Searched refs:nongreedy (Results 1 – 6 of 6) sorted by relevance
/external/regex-re2/re2/ |
D | compile.cc | 153 Frag Plus(Frag a, bool nongreedy); 154 Frag Star(Frag a, bool nongreedy); 155 Frag Quest(Frag a, bool nongreedy); 353 Frag Compiler::Star(Frag a, bool nongreedy) { in Star() argument 359 if (nongreedy) { in Star() 369 Frag Compiler::Plus(Frag a, bool nongreedy) { in Plus() argument 371 Frag f = Star(a, nongreedy); in Plus() 376 Frag Compiler::Quest(Frag a, bool nongreedy) { in Quest() argument 381 if (nongreedy) { in Quest()
|
D | parse.cc | 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) { in PushRepeatOp() argument 455 if (nongreedy) in PushRepeatOp() 470 bool nongreedy) { in PushRepetition() argument 482 if (nongreedy) in PushRepetition() 2066 bool nongreedy = false; in Parse() local 2070 nongreedy = true; in Parse() 2084 if (!ps.PushRepeatOp(op, opstr, nongreedy)) in Parse() 2100 bool nongreedy = false; in Parse() local [all …]
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | DefineGrammarItemsWalker.g | 469 /** Track the .* and .+ idioms and make them nongreedy by default.
|
/external/regex-re2/ |
D | ucs2.diff | 364 { multi_line|Regexp::NonGreedy, "multiline, nongreedy" },
|
/external/antlr/antlr-3.4/runtime/C/ |
D | README | 1789 and now it works due to new default nongreedy .* Also this works: 1792 * Dot star ".*" syntax didn't work; in lexer it is nongreedy by
|
/external/antlr/antlr-3.4/tool/ |
D | CHANGES.txt | 3359 and now it works due to new default nongreedy .* Also this works: 3362 * Dot star ".*" syntax didn't work; in lexer it is nongreedy by
|