Home
last modified time | relevance | path

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

/external/v8/src/
Dast.cc731 bool RegExpAssertion::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAssertion
747 bool RegExpAlternative::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpAlternative
751 if (node->IsAnchoredAtEnd()) { return true; } in IsAnchoredAtEnd()
768 bool RegExpDisjunction::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpDisjunction
771 if (!alternatives->at(i)->IsAnchoredAtEnd()) in IsAnchoredAtEnd()
788 bool RegExpCapture::IsAnchoredAtEnd() { in IsAnchoredAtEnd() function in v8::internal::RegExpCapture
789 return body()->IsAnchoredAtEnd(); in IsAnchoredAtEnd()
Dast.h2607 virtual bool IsAnchoredAtEnd() { return false; } in IsAnchoredAtEnd() function
2633 virtual bool IsAnchoredAtEnd() OVERRIDE;
2654 virtual bool IsAnchoredAtEnd() OVERRIDE;
2682 virtual bool IsAnchoredAtEnd() OVERRIDE;
2858 virtual bool IsAnchoredAtEnd() OVERRIDE;
Djsregexp.cc6061 bool is_end_anchored = data->tree->IsAnchoredAtEnd(); in Compile()