Home
last modified time | relevance | path

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

/external/v8/src/
Dast.cc726 bool RegExpAssertion::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAssertion
736 bool RegExpAlternative::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAlternative
740 if (node->IsAnchoredAtStart()) { return true; } in IsAnchoredAtStart()
758 bool RegExpDisjunction::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpDisjunction
761 if (!alternatives->at(i)->IsAnchoredAtStart()) in IsAnchoredAtStart()
778 bool RegExpLookahead::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpLookahead
779 return is_positive() && body()->IsAnchoredAtStart(); in IsAnchoredAtStart()
783 bool RegExpCapture::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpCapture
784 return body()->IsAnchoredAtStart(); in IsAnchoredAtStart()
Dast.h2606 virtual bool IsAnchoredAtStart() { return false; } in IsAnchoredAtStart() function
2632 virtual bool IsAnchoredAtStart() OVERRIDE;
2653 virtual bool IsAnchoredAtStart() OVERRIDE;
2681 virtual bool IsAnchoredAtStart() OVERRIDE;
2857 virtual bool IsAnchoredAtStart() OVERRIDE;
2891 virtual bool IsAnchoredAtStart() OVERRIDE;
Djsregexp.cc6062 bool is_start_anchored = data->tree->IsAnchoredAtStart(); in Compile()