Lines Matching refs:RegexpOp
66 bool PushSimpleOp(RegexpOp op);
83 bool PushRepeatOp(RegexpOp op, const StringPiece& s, bool nongreedy);
90 bool IsMarker(RegexpOp op);
146 void DoCollapse(RegexpOp op);
163 const RegexpOp kLeftParen = static_cast<RegexpOp>(kMaxRegexpOp+1);
164 const RegexpOp kVerticalBar = static_cast<RegexpOp>(kMaxRegexpOp+2);
439 bool Regexp::ParseState::PushSimpleOp(RegexpOp op) { in PushSimpleOp()
447 bool Regexp::ParseState::PushRepeatOp(RegexpOp op, const StringPiece& s, in PushRepeatOp()
497 bool Regexp::ParseState::IsMarker(RegexpOp op) { in IsMarker()
997 void Regexp::ParseState::DoCollapse(RegexpOp op) { in DoCollapse()
2055 RegexpOp op; in Parse()