Lines Matching refs:anchored
6320 BOOL anchored;
6721 anchored = ((re->overall_options | options) & PCRE2_ANCHORED) != 0;
6915 /* Loop for handling unanchored repeated matching attempts; for anchored regexs
6971 if (anchored)
6996 /* Not anchored. Advance to a unique first code unit if there is one. */
7195 anchored patterns. This showed up when somebody was matching something
7206 (!anchored && check_length < REQ_CU_MAX * 1000))
7365 /* Break the loop if the pattern is anchored or if we have passed the end of
7368 if (anchored || start_match > end_subject) break;
7396 (2) The pattern is anchored or the match was failed after (*COMMIT);