Searched refs:ovector (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcredemo.c | 59 int ovector[OVECCOUNT]; local 128 ovector, /* output vector for substring information */ 149 printf("\nMatch succeeded at offset %d\n", ovector[0]); 163 printf("ovector only has room for %d captured substrings\n", rc - 1); 171 char *substring_start = subject + ovector[2*i]; 172 int substring_length = ovector[2*i+1] - ovector[2*i]; 221 ovector[2*n+1] - ovector[2*n], subject + ovector[ [all...] |
| H A D | pcre_get.c | 252 ovector the vector of matched substrings 261 get_first_set(const pcre *code, const char *stringname, int *ovector) argument 264 get_first_set(const pcre16 *code, PCRE_SPTR16 stringname, int *ovector) 267 get_first_set(const pcre32 *code, PCRE_SPTR32 stringname, int *ovector) 298 if (ovector[n*2] >= 0) return n; 316 ovector pointer to the offsets table 335 pcre_copy_substring(const char *subject, int *ovector, int stringcount, argument 339 pcre16_copy_substring(PCRE_SPTR16 subject, int *ovector, int stringcount, 343 pcre32_copy_substring(PCRE_SPTR32 subject, int *ovector, int stringcount, 351 yield = ovector[stringnumbe 390 pcre_copy_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, char *buffer, int size) argument 441 pcre_get_substring_list(const char *subject, int *ovector, int stringcount, const char ***listptr) argument 544 pcre_get_substring(const char *subject, int *ovector, int stringcount, int stringnumber, const char **stringptr) argument 607 pcre_get_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, const char **stringptr) argument [all...] |
| H A D | pcreposix.c | 316 int *ovector = NULL; local 338 ovector = &(small_ovector[0]); 343 ovector = (int *)malloc(sizeof(int) * nmatch * 3); 344 if (ovector == NULL) return REG_ESPACE; 366 0, options, ovector, (int)(nmatch * 3)); 379 pmatch[i].rm_so = ovector[i*2]; 380 pmatch[i].rm_eo = ovector[i*2+1]; 382 if (allocated_ovector) free(ovector); 390 if (allocated_ovector) free(ovector);
|
| /PHP_5_3/ext/filter/ |
| H A D | logical_filters.c | 415 int ovector[3]; local 431 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, ovector, 3); 530 int ovector[150]; /* Needs to be a multiple of 3 */ local 543 matches = pcre_exec(re, NULL, Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, ovector, 3);
|
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 686 int ovector[3]; local 717 matches = pcre_exec(re, NULL, namelist[i], strlen(namelist[i]), 0, 0, ovector, 3);
|
Completed in 20 milliseconds