Searched refs:RegexpOp (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/ |
D | regexp.h | 102 enum RegexpOp { enum 321 RegexpOp op() { return static_cast<RegexpOp>(op_); } in op() 452 explicit Regexp(RegexpOp op, ParseFlags parse_flags); 475 static Regexp* StarPlusOrQuest(RegexpOp op, Regexp* sub, ParseFlags flags); 480 static Regexp* ConcatOrAlternate(RegexpOp op, Regexp** subs, int nsubs,
|
D | parse.cc | 93 bool PushSimpleOp(RegexpOp op); 110 bool PushRepeatOp(RegexpOp op, const StringPiece& s, bool nongreedy); 117 bool IsMarker(RegexpOp op); 173 void DoCollapse(RegexpOp op); 191 const RegexpOp kLeftParen = static_cast<RegexpOp>(kMaxRegexpOp+1); 192 const RegexpOp kVerticalBar = static_cast<RegexpOp>(kMaxRegexpOp+2); 467 bool Regexp::ParseState::PushSimpleOp(RegexpOp op) { in PushSimpleOp() 475 bool Regexp::ParseState::PushRepeatOp(RegexpOp op, const StringPiece& s, in PushRepeatOp() 604 bool Regexp::ParseState::IsMarker(RegexpOp op) { in IsMarker() 1203 void Regexp::ParseState::DoCollapse(RegexpOp op) { in DoCollapse() [all …]
|
D | regexp.cc | 30 Regexp::Regexp(RegexpOp op, ParseFlags parse_flags) in Regexp() 194 Regexp* Regexp::StarPlusOrQuest(RegexpOp op, Regexp* sub, ParseFlags flags) { in StarPlusOrQuest() 235 Regexp* Regexp::ConcatOrAlternate(RegexpOp op, Regexp** sub, int nsub, in ConcatOrAlternate()
|