HomeSort by relevance Sort by last modified time
    Searched defs:IsAnchoredAtStart (Results 1 - 2 of 2) sorted by null

  /external/v8/src/regexp/
regexp-ast.cc 65 bool RegExpAssertion::IsAnchoredAtStart() {
75 bool RegExpAlternative::IsAnchoredAtStart() {
79 if (node->IsAnchoredAtStart()) {
105 bool RegExpDisjunction::IsAnchoredAtStart() {
108 if (!alternatives->at(i)->IsAnchoredAtStart()) return false;
123 bool RegExpLookaround::IsAnchoredAtStart() {
124 return is_positive() && type() == LOOKAHEAD && body()->IsAnchoredAtStart();
128 bool RegExpCapture::IsAnchoredAtStart() { return body()->IsAnchoredAtStart(); }
regexp-ast.h 201 virtual bool IsAnchoredAtStart() { return false; }
226 bool IsAnchoredAtStart() override;
250 bool IsAnchoredAtStart() override;
278 bool IsAnchoredAtStart() override;
423 bool IsAnchoredAtStart() override;
461 bool IsAnchoredAtStart() override;

Completed in 50 milliseconds