Searched refs:pvalue (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_5/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_5/ext/imap/ |
| H A D | php_imap.c | 3476 zval **data, **pvalue, **disp_data, **env_data; local 3496 if (zend_hash_find(Z_ARRVAL_P(envelope), "remail", sizeof("remail"), (void **) &pvalue)== SUCCESS) { 3497 convert_to_string_ex(pvalue); 3498 env->remail = cpystr(Z_STRVAL_PP(pvalue)); 3500 if (zend_hash_find(Z_ARRVAL_P(envelope), "return_path", sizeof("return_path"), (void **) &pvalue)== SUCCESS) { 3501 convert_to_string_ex(pvalue); 3502 PHP_RFC822_PARSE_ADRLIST(&env->return_path, pvalue); 3504 if (zend_hash_find(Z_ARRVAL_P(envelope), "date", sizeof("date"), (void **) &pvalue)== SUCCESS) { 3505 convert_to_string_ex(pvalue); 3506 env->date = cpystr(Z_STRVAL_PP(pvalue)); [all...] |
Completed in 8 milliseconds