Searched defs:anchored (Results 1 - 2 of 2) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_dfa_exec.c330 external one, possibly multiple times if the pattern is not anchored. The
3154 is not anchored.
3194 BOOL utf, anchored, startline, firstline; local
3270 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 ||
3381 never set for an anchored regular expression, but the anchoring may be forced
3386 if (!anchored)
3409 /* For anchored or unanchored matches, there may be a "last known required
3426 /* Call the main matching function, looping for a non-anchored regex after a
3627 on only if not anchored. */
3629 if (rc != PCRE_ERROR_NOMATCH || anchored)
[all...]
H A Dpcre_exec.c6353 BOOL anchored; local
6533 anchored = ((re->options | options) & PCRE_ANCHORED) != 0;
6680 never set for an anchored regular expression, but the anchoring may be forced
6685 if (!anchored)
6706 /* For anchored or unanchored matches, there may be a "last known required
6726 /* Loop for handling unanchored repeated matching attempts; for anchored regexs
6997 /* Break the loop if the pattern is anchored or if we have passed the end of
7000 if (anchored || start_match > end_subject) break;
7027 (1) The pattern is anchored or the match was failed by (*COMMIT);

Completed in 50 milliseconds