Searched refs:FullMatchN (Results 1 – 5 of 5) sorted by relevance
/third_party/re2/ |
D | libre2.map | 6 …"re2::RE2::FullMatchN(re2::StringPiece const&, re2::RE2 const&, re2::RE2::Arg const* const*, int)";
|
/third_party/re2/re2/testing/ |
D | re2_test.cc | 573 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/ |
D | regexp_adapter_re2.cc | 128 return DispatchRE2Call(RE2::FullMatchN, input_string, utf8_regexp_, in Match()
|
/third_party/re2/re2/ |
D | re2.h | 307 static bool FullMatchN(const StringPiece& text, const RE2& re, 368 return Apply(FullMatchN, text, re, Arg(std::forward<A>(a))...); in FullMatch()
|
D | re2.cc | 334 bool RE2::FullMatchN(const StringPiece& text, const RE2& re, in FullMatchN() function in re2::RE2
|