Home
last modified time | relevance | path

Searched refs:eflags (Results 1 – 5 of 5) sorted by relevance

/PHP-5.5/ext/ereg/regex/
H A Dregexec.c113 regexec(preg, string, nmatch, pmatch, eflags)
118 int eflags; variable
132 eflags = GOODFLAGS(eflags);
134 if (g->nstates <= CHAR_BIT*sizeof(states1) && !(eflags&REG_LARGE))
135 return(smatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
137 return(lmatcher(g, (unsigned char *)string, nmatch, pmatch, eflags));
H A Dengine.c34 int eflags; member
66 matcher(g, string, nmatch, pmatch, eflags) in matcher() argument
71 int eflags;
86 if (eflags&REG_STARTEND) {
108 m->eflags = eflags;
154 if (!g->backrefs && !(m->eflags&REG_BACKR)) {
659 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
664 (c == OUT && !(m->eflags&REG_NOTEOL)) ) {
753 (c == OUT && !(m->eflags&REG_NOTEOL)) ) {
945 if (!(m->eflags&REG_TRACE))
[all …]
H A Dengine.ih7 …register struct re_guts *g, unsigned char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcreposix.c323 regmatch_t pmatch[], int eflags) in regexec() argument
333 if ((eflags & REG_NOTBOL) != 0) options |= PCRE_NOTBOL; in regexec()
334 if ((eflags & REG_NOTEOL) != 0) options |= PCRE_NOTEOL; in regexec()
335 if ((eflags & REG_NOTEMPTY) != 0) options |= PCRE_NOTEMPTY; in regexec()
365 if ((eflags & REG_STARTEND) != 0) in regexec()
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt9524 size_t nmatch, regmatch_t pmatch[], int eflags);
9688 (but see REG_STARTEND below), subject to the options in eflags. These

Completed in 29 milliseconds