HomeSort by relevance Sort by last modified time
    Searched full:endmatch_ (Results 1 - 3 of 3) sorted by null

  /external/regex-re2/re2/
bitstate.cc 54 bool endmatch_; // whether match must end at text.end() member in class:re2::BitState
75 endmatch_(false),
256 if (endmatch_ && p != text_.end())
307 endmatch_ = prog_->anchor_end();
nfa.cc 113 bool endmatch_; // whether match must end at text.end() member in class:re2::NFA
115 const char* etext_; // end of text being matched (for endmatch_)
133 endmatch_ = false;
340 if (endmatch_ && p != etext_)
426 endmatch_ = true;
  /external/regex-re2/re2/testing/
backtrack.cc 68 bool endmatch_; // whether search must end at text.end() member in class:re2::Backtracker
82 endmatch_(false),
107 endmatch_ = prog_->anchor_end();
209 if (endmatch_ && p != context_.end())

Completed in 150 milliseconds