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

  /external/v8/src/
ast.cc 713 bool RegExpAssertion::IsAnchoredAtStart() {
723 bool RegExpAlternative::IsAnchoredAtStart() {
727 if (node->IsAnchoredAtStart()) { return true; }
745 bool RegExpDisjunction::IsAnchoredAtStart() {
748 if (!alternatives->at(i)->IsAnchoredAtStart())
765 bool RegExpLookahead::IsAnchoredAtStart() {
766 return is_positive() && body()->IsAnchoredAtStart();
770 bool RegExpCapture::IsAnchoredAtStart() {
771 return body()->IsAnchoredAtStart();
    [all...]
ast.h     [all...]
  /external/chromium_org/v8/src/
ast.cc 843 bool RegExpAssertion::IsAnchoredAtStart() {
853 bool RegExpAlternative::IsAnchoredAtStart() {
857 if (node->IsAnchoredAtStart()) { return true; }
875 bool RegExpDisjunction::IsAnchoredAtStart() {
878 if (!alternatives->at(i)->IsAnchoredAtStart())
895 bool RegExpLookahead::IsAnchoredAtStart() {
896 return is_positive() && body()->IsAnchoredAtStart();
900 bool RegExpCapture::IsAnchoredAtStart() {
901 return body()->IsAnchoredAtStart();
    [all...]
ast.h     [all...]

Completed in 538 milliseconds