Searched defs:kInstByteRange (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/re2/re2/
H A Dprog.h53 kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_] enumerator in enum:re2::InstOp
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; } local
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } local
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; } local
110 return p->inst(out())->opcode() == kInstByteRange;
113 // Does this inst (an kInstByteRange) match c?
115 DCHECK_EQ(opcode(), kInstByteRange); local
156 struct { // opcode == kInstByteRange
350 int byte_inst_count_; // number of kInstByteRange instructions
/external/regex-re2/re2/
H A Dprog.h53 kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_] enumerator in enum:re2::InstOp
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; } local
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } local
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; } local
110 return p->inst(out())->opcode() == kInstByteRange;
113 // Does this inst (an kInstByteRange) match c?
115 DCHECK_EQ(opcode(), kInstByteRange); local
156 struct { // opcode == kInstByteRange
350 int byte_inst_count_; // number of kInstByteRange instructions

Completed in 415 milliseconds