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

  /external/chromium_org/v8/src/
ast.cc 726 bool RegExpAssertion::IsAnchoredAtStart() {
736 bool RegExpAlternative::IsAnchoredAtStart() {
740 if (node->IsAnchoredAtStart()) { return true; }
758 bool RegExpDisjunction::IsAnchoredAtStart() {
761 if (!alternatives->at(i)->IsAnchoredAtStart())
778 bool RegExpLookahead::IsAnchoredAtStart() {
779 return is_positive() && body()->IsAnchoredAtStart();
783 bool RegExpCapture::IsAnchoredAtStart() {
784 return body()->IsAnchoredAtStart();
    [all...]
ast.h     [all...]

Completed in 327 milliseconds