Lines Matching refs:PushSimpleOp
67 bool PushSimpleOp(RegexpOp op);
401 return PushSimpleOp(kRegexpBeginText); in PushCarat()
403 return PushSimpleOp(kRegexpBeginLine); in PushCarat()
409 return PushSimpleOp(kRegexpWordBoundary); in PushWordBoundary()
410 return PushSimpleOp(kRegexpNoWordBoundary); in PushWordBoundary()
420 bool ret = PushSimpleOp(kRegexpEndText); in PushDollar()
424 return PushSimpleOp(kRegexpEndLine); in PushDollar()
430 return PushSimpleOp(kRegexpAnyChar); in PushDot()
440 bool Regexp::ParseState::PushSimpleOp(RegexpOp op) { in PushSimpleOp() function in re2::Regexp::ParseState
585 return PushSimpleOp(kVerticalBar); in DoVerticalBar()
2122 if (!ps.PushSimpleOp(kRegexpBeginText)) in Parse()
2128 if (!ps.PushSimpleOp(kRegexpEndText)) in Parse()
2139 if (!ps.PushSimpleOp(kRegexpAnyByte)) in Parse()