Home | History | Annotate | Download | only in re2

Lines Matching refs:op_

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