Searched refs:NonGreedy (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/re2/re2/
H A Dtostring.cc185 if (re->parse_flags() & Regexp::NonGreedy)
193 if (re->parse_flags() & Regexp::NonGreedy)
201 if (re->parse_flags() & Regexp::NonGreedy)
214 if (re->parse_flags() & Regexp::NonGreedy)
H A Dcompile.cc756 return Star(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
759 return Plus(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
762 return Quest(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
H A Dparse.cc456 fl = fl ^ NonGreedy;
483 fl = fl ^ NonGreedy;
1893 nflags &= ~NonGreedy;
1895 nflags |= NonGreedy;
H A Dregexp.h283 NonGreedy = 1<<6, // Repetition operators are non-greedy by default. enumerator in enum:re2::Regexp::ParseFlags
293 // U - NonGreedy
H A Dregexp.cc354 return ((a->parse_flags() ^ b->parse_flags()) & Regexp::NonGreedy) == 0;
357 return ((a->parse_flags() ^ b->parse_flags()) & Regexp::NonGreedy) == 0 &&
/external/regex-re2/re2/
H A Dtostring.cc185 if (re->parse_flags() & Regexp::NonGreedy)
193 if (re->parse_flags() & Regexp::NonGreedy)
201 if (re->parse_flags() & Regexp::NonGreedy)
214 if (re->parse_flags() & Regexp::NonGreedy)
H A Dcompile.cc755 return Star(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
758 return Plus(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
761 return Quest(child_frags[0], re->parse_flags()&Regexp::NonGreedy);
H A Dparse.cc456 fl = fl ^ NonGreedy;
483 fl = fl ^ NonGreedy;
1893 nflags &= ~NonGreedy;
1895 nflags |= NonGreedy;
H A Dregexp.h283 NonGreedy = 1<<6, // Repetition operators are non-greedy by default. enumerator in enum:re2::Regexp::ParseFlags
293 // U - NonGreedy
H A Dregexp.cc354 return ((a->parse_flags() ^ b->parse_flags()) & Regexp::NonGreedy) == 0;
357 return ((a->parse_flags() ^ b->parse_flags()) & Regexp::NonGreedy) == 0 &&
/external/chromium_org/third_party/re2/re2/testing/
H A Ddump.cc68 if (re->parse_flags() & Regexp::NonGreedy)
H A Dtester.cc148 { multi_line|Regexp::NonGreedy, "multiline, nongreedy" },
221 if (flags & Regexp::NonGreedy)
/external/regex-re2/re2/testing/
H A Ddump.cc68 if (re->parse_flags() & Regexp::NonGreedy)
H A Dtester.cc148 { multi_line|Regexp::NonGreedy, "multiline, nongreedy" },
221 if (flags & Regexp::NonGreedy)

Completed in 1103 milliseconds