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

/external/chromium_org/third_party/re2/re2/
H A Dre2.cc481 bool RE2::PossibleMatchRange(string* min, string* max, int maxlen) const { function in class:re2::RE2
501 // Add to prefix min max using PossibleMatchRange on regexp.
504 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
508 // prog_->PossibleMatchRange has failed us,
H A Ddfa.cc87 bool PossibleMatchRange(string* min, string* max, int maxlen);
974 // It is convenient for routines like PossibleMatchRange
1977 bool DFA::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::DFA
1981 // NOTE: if future users of PossibleMatchRange want more precision when
1983 // parameter to PossibleMatchRange.
2118 // PossibleMatchRange for a Prog.
2119 bool Prog::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::Prog
2131 return dfa->PossibleMatchRange(min, max, maxlen);
/external/regex-re2/re2/
H A Dre2.cc463 bool RE2::PossibleMatchRange(string* min, string* max, int maxlen) const { function in class:re2::RE2
483 // Add to prefix min max using PossibleMatchRange on regexp.
486 if (maxlen > 0 && prog_->PossibleMatchRange(&dmin, &dmax, maxlen)) {
490 // prog_->PossibleMatchRange has failed us,
H A Ddfa.cc85 bool PossibleMatchRange(string* min, string* max, int maxlen);
972 // It is convenient for routines like PossibleMatchRange
1975 bool DFA::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::DFA
1979 // NOTE: if future users of PossibleMatchRange want more precision when
1981 // parameter to PossibleMatchRange.
2116 // PossibleMatchRange for a Prog.
2117 bool Prog::PossibleMatchRange(string* min, string* max, int maxlen) { function in class:re2::Prog
2129 return dfa->PossibleMatchRange(min, max, maxlen);

Completed in 157 milliseconds