Searched defs:PossibleMatchRange (Results 1 - 2 of 2) sorted by relevance

/external/regex-re2/re2/
H A Dre2.cc440 bool RE2::PossibleMatchRange(string* min, string* max, int maxlen) const { function in class:re2::RE2
460 // Add to prefix min max using PossibleMatchRange on regexp.
463 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
467 // prog_->PossibleMatchRange has failed us,
H A Ddfa.cc85 bool PossibleMatchRange(string* min, string* max, int maxlen);
945 // It is convenient for routines like PossibleMatchRange
1929 bool DFA::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::DFA
1933 // NOTE: if future users of PossibleMatchRange want more precision when
1935 // parameter to PossibleMatchRange.
2070 // PossibleMatchRange for a Prog.
2071 bool Prog::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::Prog
2083 return dfa->PossibleMatchRange(min, max, maxlen);

Completed in 143 milliseconds