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

/external/regex-re2/re2/
H A Donepass.cc137 uint32 matchcond; // conditions to match right now. member in struct:re2::OneState
254 uint32 nextmatchcond = state->matchcond;
257 uint32 matchcond = nextmatchcond; local
265 nextmatchcond = state->matchcond;
284 if (matchcond == kImpossible)
296 if ((matchcond & kEmptyAllFlags) == 0 || Satisfy(matchcond, context, p)) {
299 if (nmatch > 1 && (matchcond & kCapMask))
300 ApplyCaptures(matchcond, p, matchcap, ncap);
308 // That bit is per-input byte and thus in cond, not matchcond
322 uint32 matchcond = state->matchcond; local
[all...]

Completed in 164 milliseconds