Searched refs:eflags (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 34 int eflags; member in struct:match 53 #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); } 63 == size_t nmatch, regmatch_t pmatch[], int eflags); 66 matcher(g, string, nmatch, pmatch, eflags) 71 int eflags; 86 if (eflags®_STARTEND) { 108 m->eflags = eflags; 154 if (!g->backrefs && !(m->eflags®_BACKR)) { 463 if ( (sp == m->beginp && !(m->eflags [all...] |
| H A D | engine.ih | 7 static int matcher(register struct re_guts *g, unsigned char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
|
| H A D | regexec.c | 113 regexec(preg, string, nmatch, pmatch, eflags) 118 int eflags; 132 eflags = GOODFLAGS(eflags); 134 if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags®_LARGE)) 135 return(smatcher(g, (unsigned char *)string, nmatch, pmatch, eflags)); 137 return(lmatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcreposix.c | 312 regmatch_t pmatch[], int eflags) 322 if ((eflags & REG_NOTBOL) != 0) options |= PCRE_NOTBOL; 323 if ((eflags & REG_NOTEOL) != 0) options |= PCRE_NOTEOL; 324 if ((eflags & REG_NOTEMPTY) != 0) options |= PCRE_NOTEMPTY; 354 if ((eflags & REG_STARTEND) != 0) 311 regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) argument
|
Completed in 6 milliseconds