HomeSort by relevance Sort by last modified time
    Searched refs:IsAnchoredAtStart (Results 1 - 3 of 3) 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;
jsregexp.cc     [all...]

Completed in 6882 milliseconds