Lines Matching refs:RegExpAssertion
67 bool RegExpAssertion::IsAnchoredAtStart() {
68 return assertion_type() == RegExpAssertion::Type::START_OF_INPUT;
72 bool RegExpAssertion::IsAnchoredAtEnd() {
73 return assertion_type() == RegExpAssertion::Type::END_OF_INPUT;
199 void* RegExpUnparser::VisitAssertion(RegExpAssertion* that, void* data) {
201 case RegExpAssertion::Type::START_OF_INPUT:
204 case RegExpAssertion::Type::END_OF_INPUT:
207 case RegExpAssertion::Type::START_OF_LINE:
210 case RegExpAssertion::Type::END_OF_LINE:
213 case RegExpAssertion::Type::BOUNDARY:
216 case RegExpAssertion::Type::NON_BOUNDARY: