Home | History | Annotate | Download | only in re2

Lines Matching defs:op_

313   RegexpOp op() { return static_cast<RegexpOp>(op_); }
326 int min() { DCHECK_EQ(op_, kRegexpRepeat); return min_; }
327 int max() { DCHECK_EQ(op_, kRegexpRepeat); return max_; }
328 Rune rune() { DCHECK_EQ(op_, kRegexpLiteral); return rune_; }
329 CharClass* cc() { DCHECK_EQ(op_, kRegexpCharClass); return cc_; }
330 int cap() { DCHECK_EQ(op_, kRegexpCapture); return cap_; }
331 const string* name() { DCHECK_EQ(op_, kRegexpCapture); return name_; }
332 Rune* runes() { DCHECK_EQ(op_, kRegexpLiteralString); return runes_; }
333 int nrunes() { DCHECK_EQ(op_, kRegexpLiteralString); return nrunes_; }
334 int match_id() { DCHECK_EQ(op_, kRegexpHaveMatch); return match_id_; }
506 uint8 op_;