Home
last modified time | relevance | path

Searched refs:IS_NEWLINE (Results 1 – 4 of 4) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_dfa_match.c994 if (clen > 0 && !IS_NEWLINE(ptr)) in internal_dfa_match()
1019 if (clen == 0 || (IS_NEWLINE(ptr) && ptr == end_subject - mb->nllen)) in internal_dfa_match()
1034 ((mb->poptions & PCRE2_DOLLAR_ENDONLY) == 0 && IS_NEWLINE(ptr) && in internal_dfa_match()
1061 ((mb->poptions & PCRE2_DOLLAR_ENDONLY) == 0 && IS_NEWLINE(ptr))) in internal_dfa_match()
1077 else if (IS_NEWLINE(ptr)) in internal_dfa_match()
1294 (d != OP_ANY || !IS_NEWLINE(ptr)) && in internal_dfa_match()
1325 (d != OP_ANY || !IS_NEWLINE(ptr)) && in internal_dfa_match()
1355 (d != OP_ANY || !IS_NEWLINE(ptr)) && in internal_dfa_match()
1383 (d != OP_ANY || !IS_NEWLINE(ptr)) && in internal_dfa_match()
1412 (d != OP_ANY || !IS_NEWLINE(ptr)) && in internal_dfa_match()
[all …]
Dpcre2_match.c883 if (IS_NEWLINE(Feptr)) RRETURN(MATCH_NOMATCH); in match()
2928 if (IS_NEWLINE(Feptr)) RRETURN(MATCH_NOMATCH); in match()
3181 if (IS_NEWLINE(Feptr)) RRETURN(MATCH_NOMATCH); in match()
3752 if (Lctype == OP_ANY && IS_NEWLINE(Feptr)) RRETURN(MATCH_NOMATCH); in match()
3879 if (Lctype == OP_ANY && IS_NEWLINE(Feptr)) in match()
4378 if (IS_NEWLINE(Feptr)) break; in match()
4627 if (IS_NEWLINE(Feptr)) break; in match()
5936 (!IS_NEWLINE(Feptr) || Feptr != mb->end_subject - mb->nllen)) in match()
5984 if (!IS_NEWLINE(Feptr)) in match()
6948 while (t < end_subject && !IS_NEWLINE(t)) in pcre2_match()
[all …]
Dpcre2_internal.h479 #define IS_NEWLINE(p) \ macro
Dpcre2_compile.c2880 if (IS_NEWLINE(ptr)) /* For non-fixed-length newline cases, */ in parse_regex()