Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/regexp/
Dregexp-ast.cc72 bool RegExpAssertion::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAssertion
92 bool RegExpAlternative::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAlternative
96 if (node->IsAnchoredAtEnd()) { in IsAnchoredAtEnd()
116 bool RegExpDisjunction::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpDisjunction
119 if (!alternatives->at(i)->IsAnchoredAtEnd()) return false; in IsAnchoredAtEnd()
133 bool RegExpCapture::IsAnchoredAtEnd() { return body()->IsAnchoredAtEnd(); } in IsAnchoredAtEnd() function in v8::internal::RegExpCapture
Dregexp-ast.h169 virtual bool IsAnchoredAtEnd() { return false; } in IsAnchoredAtEnd() function
193 bool IsAnchoredAtEnd() override;
216 bool IsAnchoredAtEnd() override;
244 bool IsAnchoredAtEnd() override;
466 bool IsAnchoredAtEnd() override;
500 bool IsAnchoredAtEnd() override { return body_->IsAnchoredAtEnd(); } in IsAnchoredAtEnd() function
Dregexp.cc977 bool is_end_anchored = data->tree->IsAnchoredAtEnd(); in Compile()