Searched refs:subpats (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/ext/imap/ |
| H A D | php_imap.c | 1323 zval *subpats = NULL; /* Parts (not used) */ local 1338 php_pcre_match_impl(pce, internal_date, internal_date_len, return_value, subpats, global,
|
| /PHP_5_4/ext/pcre/ |
| H A D | php_pcre.h | 58 zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC);
|
| H A D | php_pcre.c | 539 zval *subpats = NULL; /* Array for subpatterns */ local 544 &subject, &subject_len, &subpats, &flags, &start_offset) == FAILURE) { 553 php_pcre_match_impl(pce, subject, subject_len, return_value, subpats, 560 zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC) 582 if (subpats != NULL) { 583 zval_dtor(subpats); 584 array_init(subpats); 645 if (global && subpats && subpats_order == PREG_PATTERN_ORDER) { 676 if (subpats != NULL) { 687 if (subpats 559 php_pcre_match_impl(pcre_cache_entry *pce, char *subject, int subject_len, zval *return_value, zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC) argument 862 zval *subpats; /* Captured subpatterns */ local [all...] |
| /PHP_5_4/ext/fileinfo/libmagic/ |
| H A D | softmagic.c | 2036 zval *subpats; local 2040 ALLOC_INIT_ZVAL(subpats); 2046 php_pcre_match_impl(pce, haystack, ms->search.s_len, retval, subpats, 1, 1, PREG_OFFSET_CAPTURE, 0 TSRMLS_CC); 2051 zval_ptr_dtor(&subpats); 2056 } else if ((Z_LVAL_P(retval) > 0) && (Z_TYPE_P(subpats) == IS_ARRAY)) { 2059 HashTable *ht = Z_ARRVAL_P(subpats); 2140 zval_ptr_dtor(&subpats); 2152 zval_ptr_dtor(&subpats);
|
| /PHP_5_4/ext/mbstring/ |
| H A D | php_mbregex.c | 958 zval *subpats; local 961 MAKE_STD_ZVAL(subpats); 962 array_init(subpats); 965 add_next_index_stringl(subpats, string + regs->beg[i], regs->end[i] - regs->beg[i], 1); 968 args[0] = &subpats; 986 zval_ptr_dtor(&subpats);
|
Completed in 26 milliseconds