Home
last modified time | relevance | path

Searched refs:NeverCapture (Results 1 – 5 of 5) sorted by relevance

/third_party/re2/re2/testing/
Dcompile_test.cc325 Dump("a**{3,}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST()
334 Dump("(a*|b*)*{3,}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST()
358 Dump("((|S.+)+|(|S.+)+|){2}", Regexp::Latin1|Regexp::NeverCapture, &forward, NULL); in TEST()
Dre2_test.cc1346 TEST(RE2, NeverCapture) { in TEST() argument
/third_party/re2/re2/
Dregexp.h309 NeverCapture = 1<<12, // Parse all parens as non-capturing. enumerator
Dre2.cc150 flags |= Regexp::NeverCapture; in ParseFlags()
Dparse.cc2251 if (ps.flags() & NeverCapture) { in Parse()