Home
last modified time | relevance | path

Searched refs:IsAnchoredAtEnd (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/regexp/
Dregexp-ast.cc70 bool RegExpAssertion::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAssertion
90 bool RegExpAlternative::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAlternative
94 if (node->IsAnchoredAtEnd()) { in IsAnchoredAtEnd()
114 bool RegExpDisjunction::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpDisjunction
117 if (!alternatives->at(i)->IsAnchoredAtEnd()) return false; in IsAnchoredAtEnd()
131 bool RegExpCapture::IsAnchoredAtEnd() { return body()->IsAnchoredAtEnd(); } in IsAnchoredAtEnd() function in v8::internal::RegExpCapture
Dregexp-ast.h207 virtual bool IsAnchoredAtEnd() { return false; } in IsAnchoredAtEnd() function
232 bool IsAnchoredAtEnd() override;
256 bool IsAnchoredAtEnd() override;
285 bool IsAnchoredAtEnd() override;
463 bool IsAnchoredAtEnd() override;
492 bool IsAnchoredAtEnd() override { return body_->IsAnchoredAtEnd(); } in IsAnchoredAtEnd() function
Djsregexp.cc6663 bool is_end_anchored = data->tree->IsAnchoredAtEnd(); in Compile()