Searched refs:IsAnchoredAtStart (Results 1 – 3 of 3) sorted by relevance
726 bool RegExpAssertion::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAssertion736 bool RegExpAlternative::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAlternative740 if (node->IsAnchoredAtStart()) { return true; } in IsAnchoredAtStart()758 bool RegExpDisjunction::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpDisjunction761 if (!alternatives->at(i)->IsAnchoredAtStart()) in IsAnchoredAtStart()778 bool RegExpLookahead::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpLookahead779 return is_positive() && body()->IsAnchoredAtStart(); in IsAnchoredAtStart()783 bool RegExpCapture::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpCapture784 return body()->IsAnchoredAtStart(); in IsAnchoredAtStart()
2606 virtual bool IsAnchoredAtStart() { return false; } in IsAnchoredAtStart() function2632 virtual bool IsAnchoredAtStart() OVERRIDE;2653 virtual bool IsAnchoredAtStart() OVERRIDE;2681 virtual bool IsAnchoredAtStart() OVERRIDE;2857 virtual bool IsAnchoredAtStart() OVERRIDE;2891 virtual bool IsAnchoredAtStart() OVERRIDE;
6062 bool is_start_anchored = data->tree->IsAnchoredAtStart(); in Compile()