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

  /external/v8/src/
ast.cc 885 bool RegExpAssertion::IsAnchoredAtStart() {
895 bool RegExpAlternative::IsAnchoredAtStart() {
899 if (node->IsAnchoredAtStart()) { return true; }
917 bool RegExpDisjunction::IsAnchoredAtStart() {
920 if (!alternatives->at(i)->IsAnchoredAtStart())
937 bool RegExpLookahead::IsAnchoredAtStart() {
938 return is_positive() && body()->IsAnchoredAtStart();
942 bool RegExpCapture::IsAnchoredAtStart() {
943 return body()->IsAnchoredAtStart();
ast.h     [all...]

Completed in 23 milliseconds