Home
last modified time | relevance | path

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

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