Home | History | Annotate | Download | only in re2

Lines Matching refs:NonGreedy

84   bool PushRepeatOp(RegexpOp op, const StringPiece& s, bool nongreedy);
88 bool PushRepetition(int min, int max, const StringPiece& s, bool nongreedy);
449 bool nongreedy) {
456 if (nongreedy)
457 fl = fl ^ NonGreedy;
471 bool nongreedy) {
483 if (nongreedy)
484 fl = fl ^ NonGreedy;
1887 nflags &= ~NonGreedy;
1889 nflags |= NonGreedy;
2055 bool nongreedy = false;
2059 nongreedy = true;
2073 if (!ps.PushRepeatOp(op, opstr, nongreedy))
2089 bool nongreedy = false;
2092 nongreedy = true;
2104 if (!ps.PushRepetition(lo, hi, opstr, nongreedy))