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.h192 virtual bool IsAnchoredAtStart() { return false; } in IsAnchoredAtStart() function
217 bool IsAnchoredAtStart() override;
241 bool IsAnchoredAtStart() override;
269 bool IsAnchoredAtStart() override;
410 bool IsAnchoredAtStart() override;
445 bool IsAnchoredAtStart() override;
Djsregexp.cc6291 bool is_start_anchored = data->tree->IsAnchoredAtStart(); in Compile()