Searched refs:pvalue (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_printint.src | 126 get_ucpname(int ptype, int pvalue) 132 if (ptype == _pcre_utt[i].type && pvalue == _pcre_utt[i].value) break; 137 ptype = ptype * pvalue; 138 return (ptype == pvalue)? "??" : "??"; 478 int pvalue = *ccode++; 479 fprintf(f, "\\p{%s}", get_ucpname(ptype, pvalue)); 484 int pvalue = *ccode++; 485 fprintf(f, "\\P{%s}", get_ucpname(ptype, pvalue));
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 3484 zval **data, **pvalue, **disp_data, **env_data; local 3504 if (zend_hash_find(Z_ARRVAL_P(envelope), "remail", sizeof("remail"), (void **) &pvalue)== SUCCESS) { 3505 convert_to_string_ex(pvalue); 3506 env->remail = cpystr(Z_STRVAL_PP(pvalue)); 3508 if (zend_hash_find(Z_ARRVAL_P(envelope), "return_path", sizeof("return_path"), (void **) &pvalue)== SUCCESS) { 3509 convert_to_string_ex(pvalue); 3510 PHP_RFC822_PARSE_ADRLIST(&env->return_path, pvalue); 3512 if (zend_hash_find(Z_ARRVAL_P(envelope), "date", sizeof("date"), (void **) &pvalue)== SUCCESS) { 3513 convert_to_string_ex(pvalue); 3514 env->date = cpystr(Z_STRVAL_PP(pvalue)); [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_compile.c | 2736 zval **pvalue; local 2738 if (zend_hash_quick_find(&parent_ce->default_properties, parent_info->name, parent_info->name_length+1, parent_info->h, (void **) &pvalue) == SUCCESS) { 2739 Z_ADDREF_PP(pvalue); 2741 zend_hash_quick_update(&ce->default_properties, parent_info->name, parent_info->name_length+1, parent_info->h, pvalue, sizeof(zval *), NULL);
|
Completed in 22 milliseconds