Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-ast.cc65 bool RegExpAssertion::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAssertion
75 bool RegExpAlternative::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpAlternative
79 if (node->IsAnchoredAtStart()) { in IsAnchoredAtStart()
105 bool RegExpDisjunction::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpDisjunction
108 if (!alternatives->at(i)->IsAnchoredAtStart()) return false; in IsAnchoredAtStart()
123 bool RegExpLookaround::IsAnchoredAtStart() { in IsAnchoredAtStart() function in v8::internal::RegExpLookaround
124 return is_positive() && type() == LOOKAHEAD && body()->IsAnchoredAtStart(); in IsAnchoredAtStart()
128 bool RegExpCapture::IsAnchoredAtStart() { return body()->IsAnchoredAtStart(); } in IsAnchoredAtStart() function in v8::internal::RegExpCapture
Dregexp-ast.h201 virtual bool IsAnchoredAtStart() { return false; } in IsAnchoredAtStart() function
226 bool IsAnchoredAtStart() override;
250 bool IsAnchoredAtStart() override;
278 bool IsAnchoredAtStart() override;
423 bool IsAnchoredAtStart() override;
452 bool IsAnchoredAtStart() override { return body_->IsAnchoredAtStart(); } in IsAnchoredAtStart() function
481 bool IsAnchoredAtStart() override;
Djsregexp.cc6647 bool is_start_anchored = data->tree->IsAnchoredAtStart(); in Compile()