Searched refs:PartialMatch (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/googletest/googletest/test/ |
| H A D | googletest-port-test.cc | 448 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); in TYPED_TEST() 452 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); in TYPED_TEST() 454 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re)); in TYPED_TEST() 455 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re)); in TYPED_TEST() 908 EXPECT_TRUE(RE::PartialMatch("", empty)); in TEST() 909 EXPECT_TRUE(RE::PartialMatch("a", empty)); in TEST() 912 EXPECT_TRUE(RE::PartialMatch("az", re)); in TEST() 913 EXPECT_TRUE(RE::PartialMatch("axyz", re)); in TEST() 914 EXPECT_TRUE(RE::PartialMatch("baz", re)); in TEST() 915 EXPECT_TRUE(RE::PartialMatch("azy", re)); in TEST() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ComplexDeinterleavingPass.cpp | 551 std::pair<Value *, Value *> &PartialMatch) { in identifyNodeWithImplicitAdd() argument 622 PartialMatch.first = CommonOperand; in identifyNodeWithImplicitAdd() 624 PartialMatch.second = CommonOperand; in identifyNodeWithImplicitAdd() 626 if (!PartialMatch.first || !PartialMatch.second) { in identifyNodeWithImplicitAdd() 631 NodePtr CommonNode = identifyNode(PartialMatch.first, PartialMatch.second); in identifyNodeWithImplicitAdd() 723 std::pair<Value *, Value *> PartialMatch( in identifyPartialMul() local 741 NodePtr CNode = identifyNodeWithImplicitAdd(CRInst, CIInst, PartialMatch); in identifyPartialMul() 753 assert(PartialMatch.first && PartialMatch.second); in identifyPartialMul() 754 NodePtr CommonRes = identifyNode(PartialMatch.first, PartialMatch.second); in identifyPartialMul()
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-death-test.h | 320 ::testing::internal::RE::PartialMatch(".*", (regex)); \
|
| H A D | gtest-matchers.h | 814 : RE::PartialMatch(s2, *regex_);
|
| /freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-port.h | 952 static bool PartialMatch(absl::string_view str, const RE& re) { in PartialMatch() function 953 return RE2::PartialMatch(str, re.regex_); in PartialMatch() 988 static bool PartialMatch(const ::std::string& str, const RE& re) { in PartialMatch() function 989 return PartialMatch(str.c_str(), re); in PartialMatch() 993 static bool PartialMatch(const char* str, const RE& re);
|
| /freebsd-14.2/contrib/googletest/googletest/src/ |
| H A D | gtest-port.cc | 689 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE 937 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
|