Home
last modified time | relevance | path

Searched refs:anchor_end (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dbacktrack.cc108 if (prog_->anchor_end() && text.end() < context_.end()) in Search()
111 longest_ = longest | prog_->anchor_end(); in Search()
112 endmatch_ = prog_->anchor_end(); in Search()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dbitstate.cc298 if (prog_->anchor_end() && context_.end() != text.end()) in Search()
301 longest_ = longest || prog_->anchor_end(); in Search()
302 endmatch_ = prog_->anchor_end(); in Search()
Donepass.cc242 if (anchor_end() && context.end() != text.end()) in SearchOnePass()
244 if (anchor_end()) in SearchOnePass()
Dnfa.cc466 if (prog_->anchor_end() && context.end() != text.end()) in Search()
469 if (prog_->anchor_end()) { in Search()
Ddfa.cc644 if (ip->opcode() == kInstMatch && !prog_->anchor_end()) in WorkqToCachedState()
975 if (prog_->anchor_end() && c != kByteEndText && in RunWorkqOnByte()
1843 bool dollar = anchor_end(); in SearchDFA()
1859 } else if (kind == kFullMatch || anchor_end()) { in SearchDFA()
Dprog.h214 bool anchor_end() { return anchor_end_; } in anchor_end() function
Dre2.cc655 if (prog_->anchor_end() && endpos != text.size()) in GlobalReplace()
660 if (prog_->anchor_start() && prog_->anchor_end()) in GlobalReplace()
712 if (prog_->anchor_end()) { in GlobalReplace()
/external/python/cpython2/Lib/
Dhtmllib.py115 def anchor_end(self): member in HTMLParser
398 self.anchor_end()
/external/python/cpython2/Doc/library/
Dhtmllib.rst129 .. method:: HTMLParser.anchor_end()