Searched refs:start_offset (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcredemo.c | 299 int start_offset = ovector[1]; /* Start at end of previous match */ local 318 start_offset, /* starting offset in the subject */ 339 ovector[1] = start_offset + 1; /* Advance one byte */ 341 start_offset < subject_length - 1 && /* we are at CRLF, */ 342 subject[start_offset] == '\r' && 343 subject[start_offset + 1] == '\n')
|
| H A D | pcre_exec.c | 1551 mstart == md->start_subject + md->start_offset))) 2079 if (eptr != md->start_subject + md->start_offset) RRETURN(MATCH_NOMATCH); 6219 start_offset where to start in the subject string 6233 PCRE_SPTR subject, int length, int start_offset, int options, int *offsets, 6238 PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets, 6243 PCRE_SPTR32 subject, int length, int start_offset, int options, int *offsets, 6264 PCRE_PUCHAR start_match = (PCRE_PUCHAR)subject + start_offset; 6285 start_offset == -999) 6299 if (start_offset < 0 || start_offset > lengt 6232 pcre_exec(const pcre *argument_re, const pcre_extra *extra_data, PCRE_SPTR subject, int length, int start_offset, int options, int *offsets, int offsetcount) argument [all...] |
| /PHP_5_4/ext/imap/ |
| H A D | php_imap.c | 1325 long start_offset = 0; /* Start offset (not used) */ local 1339 0, regex_flags, start_offset TSRMLS_CC);
|
| /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 | 541 long start_offset = 0; /* Where the new search starts */ local 544 &subject, &subject_len, &subpats, &flags, &start_offset) == FAILURE) { 554 global, ZEND_NUM_ARGS() >= 4, flags, start_offset TSRMLS_CC); 560 zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC) 609 if (start_offset < 0) { 610 start_offset = subject_len + start_offset; 611 if (start_offset < 0) { 612 start_offset = 0; 659 count = pcre_exec(pce->re, extra, subject, subject_len, start_offset, 1021 int start_offset; /* Where the new search starts */ local 1492 int start_offset; /* Where the new search starts */ local [all...] |
Completed in 20 milliseconds