Lines Matching refs:RE2

88     RE2 re(regexp);  in MemoryUsage()
90 RE2::FullMatch(text, re); in MemoryUsage()
96 static_cast<int>(sizeof(RE2)), in MemoryUsage()
272 RE2 re("((Hello World))"); in FindAndConsume()
276 CHECK(RE2::FindAndConsume(&t, re, &u)); in FindAndConsume()
651 RE2 re(regexp); in CompileRE2()
876 RE2 re(regexp); in SearchRE2()
879 CHECK_EQ(RE2::FullMatch(text, re), expect_match); in SearchRE2()
881 CHECK_EQ(RE2::PartialMatch(text, re), expect_match); in SearchRE2()
961 RE2 re(regexp); in SearchCachedRE2()
965 CHECK_EQ(RE2::FullMatch(text, re), expect_match); in SearchCachedRE2()
967 CHECK_EQ(RE2::PartialMatch(text, re), expect_match); in SearchCachedRE2()
1039 RE2 re(regexp); in Parse3RE2()
1042 CHECK(RE2::FullMatch(text, re, &sp1, &sp2, &sp3)); in Parse3RE2()
1106 RE2 re(regexp); in Parse3CachedRE2()
1110 CHECK(RE2::FullMatch(text, re, &sp1, &sp2, &sp3)); in Parse3CachedRE2()
1169 RE2 re(regexp); in Parse1RE2()
1172 CHECK(RE2::FullMatch(text, re, &sp1)); in Parse1RE2()
1236 RE2 re(regexp); in Parse1CachedRE2()
1240 CHECK(RE2::FullMatch(text, re, &sp1)); in Parse1CachedRE2()
1256 RE2 re(regexp); in SearchParse2CachedRE2()
1260 CHECK(RE2::PartialMatch(text, re, &sp1, &sp2)); in SearchParse2CachedRE2()
1276 RE2 re(regexp); in SearchParse1CachedRE2()
1280 CHECK(RE2::PartialMatch(text, re, &sp1)); in SearchParse1CachedRE2()
1292 RE2 re(""); in EmptyPartialMatchRE2()
1294 RE2::PartialMatch("", re); in EmptyPartialMatchRE2()
1310 RE2 re("abcdefg"); in SimplePartialMatchRE2()
1312 RE2::PartialMatch("abcdefg", re); in SimplePartialMatchRE2()
1334 RE2 re("(?-s)^(?:GET|POST) +([^ ]+) HTTP"); in HTTPPartialMatchRE2()
1336 RE2::PartialMatch(http_text, re, &a); in HTTPPartialMatchRE2()
1358 RE2 re("(?-s)^(?:GET|POST) +([^ ]+) HTTP"); in SmallHTTPPartialMatchRE2()
1360 RE2::PartialMatch(http_text, re, &a); in SmallHTTPPartialMatchRE2()
1379 RE2 re("(?-s)^(.+)"); in DotMatchRE2()
1381 RE2::PartialMatch(http_text, re, &a); in DotMatchRE2()
1400 RE2 re("(?-s)^([ -~]+)"); in ASCIIMatchRE2()
1402 RE2::PartialMatch(http_text, re, &a); in ASCIIMatchRE2()
1430 RE2 re(regexp, RE2::Latin1); in FullMatchRE2()
1433 CHECK(RE2::FullMatch(s, re)); in FullMatchRE2()