Lines Matching refs:RegExpAssertion
713 bool RegExpAssertion::IsAnchoredAtStart() { in IsAnchoredAtStart()
714 return type() == RegExpAssertion::START_OF_INPUT; in IsAnchoredAtStart()
718 bool RegExpAssertion::IsAnchoredAtEnd() { in IsAnchoredAtEnd()
719 return type() == RegExpAssertion::END_OF_INPUT; in IsAnchoredAtEnd()
849 void* RegExpUnparser::VisitAssertion(RegExpAssertion* that, void* data) { in VisitAssertion()
851 case RegExpAssertion::START_OF_INPUT: in VisitAssertion()
854 case RegExpAssertion::END_OF_INPUT: in VisitAssertion()
857 case RegExpAssertion::START_OF_LINE: in VisitAssertion()
860 case RegExpAssertion::END_OF_LINE: in VisitAssertion()
863 case RegExpAssertion::BOUNDARY: in VisitAssertion()
866 case RegExpAssertion::NON_BOUNDARY: in VisitAssertion()