Searched refs:PartialMatchN (Results 1 - 3 of 3) sorted by relevance

/external/regex-re2/re2/testing/
H A Dre2_test.cc523 TEST(RE2, PartialMatchN) {
528 EXPECT_TRUE(RE2::PartialMatchN("hello", "e.*o", args, 0));
529 EXPECT_FALSE(RE2::PartialMatchN("othello", "a.*o", args, 0));
534 EXPECT_TRUE(RE2::PartialMatchN("1001 nights", "(\\d+)", args, 1));
536 EXPECT_FALSE(RE2::PartialMatchN("three", "(\\d+)", args, 1));
541 EXPECT_TRUE(RE2::PartialMatchN("answer: 42:life", "(\\d+):(\\w+)", args, 2));
544 EXPECT_FALSE(RE2::PartialMatchN("hi1", "(\\w+)(1)", args, 2));
/external/regex-re2/re2/
H A Dre2.h335 static bool PartialMatchN(const StringPiece& text, const RE2& re, // 3..16 args
338 bool, const StringPiece&, const RE2&, Arg, RE2::PartialMatchN> PartialMatch;
H A Dre2.cc30 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::PartialMatchN> RE2::PartialMatch;
303 bool RE2::PartialMatchN(const StringPiece& text, const RE2& re, function in class:re2::RE2

Completed in 90 milliseconds