Home
last modified time | relevance | path

Searched refs:PossibleMatchRange (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dpossible_match_test.cc109 TEST(PossibleMatchRange, HandWritten) { in TEST() argument
120 ASSERT_TRUE(prog->PossibleMatchRange(&min, &max, t.maxlen)) in TEST()
125 ASSERT_TRUE(RE2(t.regexp).PossibleMatchRange(&min, &max, t.maxlen)); in TEST()
134 TEST(PossibleMatchRange, Failures) { in TEST() argument
138 EXPECT_FALSE(RE2("abc").PossibleMatchRange(&min, &max, 0)); in TEST()
144 PossibleMatchRange(&min, &max, 10)) in TEST()
147 PossibleMatchRange(&min, &max, 10)) in TEST()
150 PossibleMatchRange(&min, &max, 10)) in TEST()
153 PossibleMatchRange(&min, &max, 10)) in TEST()
156 PossibleMatchRange(&min, &max, 10)) in TEST()
[all …]
Dregexp_benchmark.cc1561 CHECK(re.PossibleMatchRange(&min, &max, kMaxLen)); in PossibleMatchRangeCommon()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/fuzzing/
Dre2_fuzzer.cc127 re.PossibleMatchRange(&min, &max, /*maxlen=*/9); in TestOneInput()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Ddfa.cc99 bool PossibleMatchRange(std::string* min, std::string* max, int maxlen);
1987 bool DFA::PossibleMatchRange(std::string* min, std::string* max, int maxlen) { in PossibleMatchRange() function in re2::DFA
2124 bool Prog::PossibleMatchRange(std::string* min, std::string* max, int maxlen) { in PossibleMatchRange() function in re2::Prog
2127 return GetDFA(kLongestMatch)->PossibleMatchRange(min, max, maxlen); in PossibleMatchRange()
Dprog.h353 bool PossibleMatchRange(std::string* min, std::string* max, int maxlen);
Dre2.cc553 bool RE2::PossibleMatchRange(std::string* min, std::string* max, in GlobalReplace() function in re2::RE2
577 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) { in GlobalReplace()
Dre2.h481 bool PossibleMatchRange(std::string* min, std::string* max,