FullMatchN 35 third_party/re2/re2/re2.cc const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch = {}; FullMatchN 328 third_party/re2/re2/re2.h static bool FullMatchN(const StringPiece& text, const RE2& re, FullMatchN 331 third_party/re2/re2/re2.h bool, const StringPiece&, const RE2&, Arg, RE2::FullMatchN> FullMatch; FullMatchN 614 third_party/re2/re2/testing/re2_test.cc TEST(RE2, FullMatchN) { FullMatchN 619 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::FullMatchN("hello", "h.*o", args, 0)); FullMatchN 620 third_party/re2/re2/testing/re2_test.cc EXPECT_FALSE(RE2::FullMatchN("othello", "h.*o", args, 0)); FullMatchN 625 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::FullMatchN("1001", "(\\d+)", args, 1)); FullMatchN 627 third_party/re2/re2/testing/re2_test.cc EXPECT_FALSE(RE2::FullMatchN("three", "(\\d+)", args, 1)); FullMatchN 632 third_party/re2/re2/testing/re2_test.cc EXPECT_TRUE(RE2::FullMatchN("42:life", "(\\d+):(\\w+)", args, 2)); FullMatchN 635 third_party/re2/re2/testing/re2_test.cc EXPECT_FALSE(RE2::FullMatchN("hi1", "(\\w+)(1)", args, 2));