Searched refs:PCRE2_ERROR_NOMATCH (Results 1 – 13 of 13) sorted by relevance
/third_party/rust/crates/regex/bench/src/ffi/ |
D | pcre2.rs | 93 if err == PCRE2_ERROR_NOMATCH { in find_at() 149 const PCRE2_ERROR_NOMATCH: c_int = -1; constant
|
/third_party/pcre2/pcre2/src/ |
D | pcre2demo.c | 190 case PCRE2_ERROR_NOMATCH: printf("No match\n"); break; in main() 412 if (rc == PCRE2_ERROR_NOMATCH) in main()
|
D | pcre2_dfa_match.c | 570 match_count = PCRE2_ERROR_NOMATCH; /* A negative number */ in internal_dfa_match() 2781 if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match() 2880 if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match() 2976 else if (rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match() 3034 if (rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match() 3187 else if (rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match() 3265 match_count = PCRE2_ERROR_NOMATCH; in internal_dfa_match() 3990 if (rc != PCRE2_ERROR_NOMATCH || anchored) in pcre2_dfa_match() 4047 rc = PCRE2_ERROR_NOMATCH; in pcre2_dfa_match()
|
D | pcre2posix.c | 434 case PCRE2_ERROR_NOMATCH: return REG_NOMATCH; in pcre2_regexec()
|
D | pcre2_substitute.c | 402 if (rc != PCRE2_ERROR_NOMATCH) goto EXIT; in pcre2_substitute()
|
D | pcre2.h.in | 320 #define PCRE2_ERROR_NOMATCH (-1) macro
|
D | pcre2.h.generic | 320 #define PCRE2_ERROR_NOMATCH (-1)
|
D | pcre2grep.c | 1837 if (*mrc == PCRE2_ERROR_NOMATCH) continue; in match_patterns()
|
D | pcre2_jit_compile.c | 5302 OP1(SLJIT_MOV, SLJIT_RETURN_REG, 0, SLJIT_IMM, PCRE2_ERROR_NOMATCH); in mainloop_entry() 13447 OP1(SLJIT_MOV, SLJIT_RETURN_REG, 0, SLJIT_IMM, PCRE2_ERROR_NOMATCH); in compile_backtrackingpath() 13977 OP1(SLJIT_MOV, SLJIT_RETURN_REG, 0, SLJIT_IMM, PCRE2_ERROR_NOMATCH); in jit_compile() 14046 OP1(SLJIT_MOV, SLJIT_RETURN_REG, 0, SLJIT_IMM, PCRE2_ERROR_NOMATCH); in jit_compile() 14123 OP1(SLJIT_MOV, SLJIT_RETURN_REG, 0, SLJIT_IMM, PCRE2_ERROR_NOMATCH); in jit_compile()
|
D | pcre2test.c | 6073 capcount == PCRE2_ERROR_NOMATCH || in check_match_limit() 7999 case PCRE2_ERROR_NOMATCH: in process_data()
|
D | pcre2_match.c | 7531 else match_data->rc = PCRE2_ERROR_NOMATCH; in pcre2_match()
|
/third_party/selinux/libselinux/src/ |
D | regex.c | 226 case PCRE2_ERROR_NOMATCH: in regex_match()
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2.txt | 1000 offset limit less than 3, the result is PCRE2_ERROR_NOMATCH. A match 2521 match block only when the error is PCRE2_ERROR_NOMATCH, PCRE2_ER- 2774 returned instead of PCRE2_ERROR_NOMATCH. In other words, PCRE2_PAR- 2923 failure to match (PCRE2_ERROR_NOMATCH), a mark name may be available. 2982 PCRE2_ERROR_NOMATCH 3517 code. Except for PCRE2_ERROR_NOMATCH (which is never returned), errors 3662 matches, pcre2_match() will yield PCRE2_ERROR_NOMATCH. 3730 return code PCRE2_ERROR_NOMATCH is converted into PCRE2_ERROR_PARTIAL 4830 ROR_xxx values. In particular, PCRE2_ERROR_NOMATCH forces a standard 5848 PCRE2_ERROR_NOMATCH is returned, just like any other failing match. [all …]
|