Home
last modified time | relevance | path

Searched refs:anchor_start (Results 1 – 8 of 8) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dbacktrack.cc106 if (prog_->anchor_start() && text.begin() > context_.begin()) in Search()
110 anchored_ = anchored | prog_->anchor_start(); in Search()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dbitstate.cc296 if (prog_->anchor_start() && context_.begin() != text.begin()) in Search()
300 anchored_ = anchored || prog_->anchor_start(); in Search()
Dnfa.cc464 if (prog_->anchor_start() && context.begin() != text.begin()) in Search()
468 anchored |= prog_->anchor_start(); in Search()
Dre2.cc653 if (prog_->anchor_start() && startpos != 0) in GlobalReplace()
660 if (prog_->anchor_start() && prog_->anchor_end()) in GlobalReplace()
662 else if (prog_->anchor_start() && re_anchor != ANCHOR_BOTH) in GlobalReplace()
Dprog.h212 bool anchor_start() { return anchor_start_; } in anchor_start() function
Donepass.cc240 if (anchor_start() && context.begin() != text.begin()) in SearchOnePass()
Ddfa.cc1842 bool caret = anchor_start(); in SearchDFA()
1855 bool anchored = anchor == kAnchored || anchor_start() || kind == kFullMatch; in SearchDFA()
Dcompile.cc1163 if (!c.prog_->anchor_start()) { in Compile()