Home | History | Annotate | Download | only in re2

Lines Matching refs:NonGreedy

83   bool PushRepeatOp(RegexpOp op, const StringPiece& s, bool nongreedy);
87 bool PushRepetition(int min, int max, const StringPiece& s, bool nongreedy);
448 bool nongreedy) {
455 if (nongreedy)
456 fl = fl ^ NonGreedy;
470 bool nongreedy) {
482 if (nongreedy)
483 fl = fl ^ NonGreedy;
1893 nflags &= ~NonGreedy;
1895 nflags |= NonGreedy;
2066 bool nongreedy = false;
2070 nongreedy = true;
2084 if (!ps.PushRepeatOp(op, opstr, nongreedy))
2100 bool nongreedy = false;
2103 nongreedy = true;
2115 if (!ps.PushRepetition(lo, hi, opstr, nongreedy))