Home
last modified time | relevance | path

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

/third_party/re2/
Dlibre2.map6 …"re2::RE2::FullMatchN(re2::StringPiece const&, re2::RE2 const&, re2::RE2::Arg const* const*, int)";
/third_party/re2/re2/testing/
Dre2_test.cc573 EXPECT_TRUE(RE2::FullMatchN("directions from mountain view to san jose", in TEST()
690 TEST(RE2, FullMatchN) { in TEST() argument
695 EXPECT_TRUE(RE2::FullMatchN("hello", "h.*o", args, 0)); in TEST()
696 EXPECT_FALSE(RE2::FullMatchN("othello", "h.*o", args, 0)); in TEST()
701 EXPECT_TRUE(RE2::FullMatchN("1001", "(\\d+)", args, 1)); in TEST()
703 EXPECT_FALSE(RE2::FullMatchN("three", "(\\d+)", args, 1)); in TEST()
708 EXPECT_TRUE(RE2::FullMatchN("42:life", "(\\d+):(\\w+)", args, 2)); in TEST()
711 EXPECT_FALSE(RE2::FullMatchN("hi1", "(\\w+)(1)", args, 2)); in TEST()
/third_party/libphonenumber/cpp/src/phonenumbers/
Dregexp_adapter_re2.cc128 return DispatchRE2Call(RE2::FullMatchN, input_string, utf8_regexp_, in Match()
/third_party/re2/re2/
Dre2.h307 static bool FullMatchN(const StringPiece& text, const RE2& re,
368 return Apply(FullMatchN, text, re, Arg(std::forward<A>(a))...); in FullMatch()
Dre2.cc334 bool RE2::FullMatchN(const StringPiece& text, const RE2& re, in FullMatchN() function in re2::RE2