Home
last modified time | relevance | path

Searched refs:RegexpOp (Results 1 – 3 of 3) sorted by relevance

/external/regex-re2/re2/
Dregexp.h95 enum RegexpOp { enum
313 RegexpOp op() { return static_cast<RegexpOp>(op_); } in op()
434 explicit Regexp(RegexpOp op, ParseFlags parse_flags);
457 static Regexp* ConcatOrAlternate(RegexpOp op, Regexp** subs, int nsubs,
Dparse.cc66 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()
[all …]
Dregexp.cc16 Regexp::Regexp(RegexpOp op, ParseFlags parse_flags) in Regexp()
209 Regexp* Regexp::ConcatOrAlternate(RegexpOp op, Regexp** sub, int nsub, in ConcatOrAlternate()