Searched defs:IsAnchoredAtStart (Results 1 - 2 of 2) sorted by relevance

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

Completed in 90 milliseconds