HomeSort by relevance Sort by last modified time
    Searched refs:PossibleMatchRange (Results 1 - 4 of 4) sorted by null

  /external/regex-re2/re2/
prog.h 320 // Assuming PossibleMatchRange(&min, &max, N) returns successfully, any
324 // Note that PossibleMatchRange() will only consider the first copy of an
330 bool PossibleMatchRange(string* min, string* max, int maxlen);
dfa.cc 85 bool PossibleMatchRange(string* min, string* max, int maxlen);
    [all...]
re2.h 395 // Assuming PossibleMatchRange(&min, &max, N) returns successfully, any
399 // Note that PossibleMatchRange() will only consider the first copy of an
405 bool PossibleMatchRange(string* min, string* max, int maxlen) const;
    [all...]
re2.cc 440 bool RE2::PossibleMatchRange(string* min, string* max, int maxlen) const {
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,
    [all...]

Completed in 97 milliseconds