Home | History | Annotate | Download | only in src

Lines Matching refs:RegExpAssertion

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