Home
last modified time | relevance | path

Searched refs:PartialMatch (Results 1 – 25 of 55) sorted by relevance

123

/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/testing/
Dre2_test.cc327 ASSERT_TRUE(RE2::PartialMatch("foo", r, &word1, &word2, &word3)); in TEST()
331 ASSERT_TRUE(RE2::PartialMatch("bar", r, &word1, &word2, &word3)); in TEST()
335 ASSERT_TRUE(RE2::PartialMatch("baz", r, &word1, &word2, &word3)); in TEST()
339 ASSERT_FALSE(RE2::PartialMatch("f", r, &word1, &word2, &word3)); in TEST()
366 ASSERT_TRUE(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port)); in TEST()
607 TEST(RE2, PartialMatch) { in TEST() argument
608 ASSERT_TRUE(RE2::PartialMatch("x", "x")); in TEST()
609 ASSERT_TRUE(RE2::PartialMatch("hello", "h.*o")); in TEST()
610 ASSERT_TRUE(RE2::PartialMatch("othello", "h.*o")); in TEST()
611 ASSERT_TRUE(RE2::PartialMatch("hello!", "h.*o")); in TEST()
[all …]
Dregexp_benchmark.cc921 CHECK_EQ(PCRE::PartialMatch(text, re), expect_match); in SearchPCRE()
934 CHECK_EQ(RE2::PartialMatch(text, re), expect_match); in SearchRE2()
1017 CHECK_EQ(PCRE::PartialMatch(text, re), expect_match); in SearchCachedPCRE()
1030 CHECK_EQ(RE2::PartialMatch(text, re), expect_match); in SearchCachedRE2()
1348 CHECK(PCRE::PartialMatch(text, re, &sp1, &sp2)); in SearchParse2CachedPCRE()
1358 CHECK(RE2::PartialMatch(text, re, &sp1, &sp2)); in SearchParse2CachedRE2()
1368 CHECK(PCRE::PartialMatch(text, re, &sp1)); in SearchParse1CachedPCRE()
1378 CHECK(RE2::PartialMatch(text, re, &sp1)); in SearchParse1CachedRE2()
1385 PCRE::PartialMatch("", re); in EmptyPartialMatchPCRE()
1392 RE2::PartialMatch("", re); in EmptyPartialMatchRE2()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/
Dfiltered_re2.cc74 if (RE2::PartialMatch(text, *re2_vec_[i])) in SlowFirstMatch()
88 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]])) in FirstMatch()
101 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]])) in AllMatches()
/external/googletest/googletest/test/
Dgoogletest-port-test.cc420 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); in TYPED_TEST()
421 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty)); in TYPED_TEST()
424 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); in TYPED_TEST()
425 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re)); in TYPED_TEST()
426 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); in TYPED_TEST()
427 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); in TYPED_TEST()
428 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re)); in TYPED_TEST()
884 EXPECT_TRUE(RE::PartialMatch("", empty)); in TEST()
885 EXPECT_TRUE(RE::PartialMatch("a", empty)); in TEST()
888 EXPECT_TRUE(RE::PartialMatch("az", re)); in TEST()
[all …]
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgoogletest-port-test.cc430 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); in TYPED_TEST()
431 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty)); in TYPED_TEST()
434 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); in TYPED_TEST()
435 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re)); in TYPED_TEST()
436 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); in TYPED_TEST()
437 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); in TYPED_TEST()
438 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re)); in TYPED_TEST()
896 EXPECT_TRUE(RE::PartialMatch("", empty)); in TEST()
897 EXPECT_TRUE(RE::PartialMatch("a", empty)); in TEST()
900 EXPECT_TRUE(RE::PartialMatch("az", re)); in TEST()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/re2/re2/fuzzing/
Dre2_fuzzer.cc102 RE2::PartialMatch(sp, re); in TestOneInput()
113 RE2::PartialMatch(sp, re, &l); in TestOneInput()
/external/tensorflow/tensorflow/lite/testing/
Dgenerated_examples_zip_test.cc317 if (RE2::PartialMatch(test_name, p.first)) { in TEST_P()
339 if (RE2::PartialMatch(test_name, p.first)) { in TEST_P()
365 if (RE2::PartialMatch(test_name, p.first)) { in TEST_P()
/external/llvm-project/clang-tools-extra/clangd/refactor/
DRename.cpp570 std::vector<size_t> &PartialMatch, ArrayRef<Range> IndexedRest, in findNearMiss() argument
578 MatchedCB(PartialMatch); in findNearMiss()
582 PartialMatch.push_back(LexedIndex); in findNearMiss()
583 findNearMiss(PartialMatch, IndexedRest.drop_front(), LexedRest.drop_front(), in findNearMiss()
585 PartialMatch.pop_back(); in findNearMiss()
587 findNearMiss(PartialMatch, IndexedRest, LexedRest.drop_front(), in findNearMiss()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h853 static bool PartialMatch(const ::std::string& str, const RE& re) {
854 return PartialMatch(str.c_str(), re);
862 static bool PartialMatch(const ::string& str, const RE& re) {
863 return PartialMatch(str.c_str(), re);
869 static bool PartialMatch(const char* str, const RE& re);
Dgtest-death-test-internal.h295 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/
Dgtest-death-test.h318 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/googletest/googletest/include/gtest/
Dgtest-death-test.h317 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/mesa3d/src/gtest/include/gtest/
Dgtest-death-test.h318 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
Dgtest-death-test.h319 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/
Dgtest-death-test.h317 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/rust/crates/grpcio-sys/grpc/third_party/re2/util/
Dbenchmark.cc117 if (RE2::PartialMatch(name, argv[i])) in WantBench()
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-port.h1196 static bool PartialMatch(const ::std::string& str, const RE& re) {
1197 return PartialMatch(str.c_str(), re);
1205 static bool PartialMatch(const ::string& str, const RE& re) {
1206 return PartialMatch(str.c_str(), re);
1212 static bool PartialMatch(const char* str, const RE& re);
Dgtest-death-test-internal.h306 ::testing::internal::RE::PartialMatch(".*", (regex)); \
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-port.h1272 static bool PartialMatch(const ::std::string& str, const RE& re) {
1273 return PartialMatch(str.c_str(), re);
1281 static bool PartialMatch(const ::string& str, const RE& re) {
1282 return PartialMatch(str.c_str(), re);
1288 static bool PartialMatch(const char* str, const RE& re);
/external/tensorflow/tensorflow/java/src/gen/cc/
Dop_specs.cc191 if (!RE2::PartialMatch(*input, expr, &match)) return false; in FindAndCut()
268 if (RE2::PartialMatch(input, "([^\\[]+)\\]\\((http.+)\\)", &label, in ParseDocumentation()
/external/llvm/utils/unittest/googletest/src/
Dgtest-port.cc137 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
387 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
/external/tensorflow/tensorflow/compiler/xla/service/
Ddump.cc90 return RE2::PartialMatch(module_name, pattern); in CanonicalDebugOptions()
104 return RE2::PartialMatch(pass_name, pattern); in CanonicalDebugOptions()
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-port.h896 static bool PartialMatch(const ::std::string& str, const RE& re) { in PartialMatch() function
897 return PartialMatch(str.c_str(), re); in PartialMatch()
901 static bool PartialMatch(const char* str, const RE& re);
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-port.h917 static bool PartialMatch(const ::std::string& str, const RE& re) {
918 return PartialMatch(str.c_str(), re);
922 static bool PartialMatch(const char* str, const RE& re);
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-port.h891 static bool PartialMatch(const ::std::string &str, const RE &re) { in PartialMatch() function
892 return PartialMatch(str.c_str(), re); in PartialMatch()
896 static bool PartialMatch(const char *str, const RE &re);

123