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

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_dfa_exec.c330 external one, possibly multiple times if the pattern is not anchored. The
3155 is not anchored.
3195 BOOL utf, anchored, startline, firstline; local
3271 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 ||
3382 never set for an anchored regular expression, but the anchoring may be forced
3387 if (!anchored)
3410 /* For anchored or unanchored matches, there may be a "last known required
3427 /* Call the main matching function, looping for a non-anchored regex after a
3628 on only if not anchored. */
3630 if (rc != PCRE_ERROR_NOMATCH || anchored)
[all...]
H A Dpcre_exec.c6365 BOOL anchored; local
6545 anchored = ((re->options | options) & PCRE_ANCHORED) != 0;
6693 never set for an anchored regular expression, but the anchoring may be forced
6698 if (!anchored)
6719 /* For anchored or unanchored matches, there may be a "last known required
6739 /* Loop for handling unanchored repeated matching attempts; for anchored regexs
7010 /* Break the loop if the pattern is anchored or if we have passed the end of
7013 if (anchored || start_match > end_subject) break;
7040 (1) The pattern is anchored or the match was failed by (*COMMIT);

Completed in 96 milliseconds