Home
last modified time | relevance | path

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

/src/contrib/googletest/googletest/test/
H A Dgoogletest-port-test.cc448 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty)); in TYPED_TEST()
449 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty)); in TYPED_TEST()
452 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re)); in TYPED_TEST()
453 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), 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()
456 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), 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()
[all …]
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp551 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()
/src/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h960 static bool PartialMatch(absl::string_view str, const RE& re) { in PartialMatch() function
961 return RE2::PartialMatch(str, re.regex_); in PartialMatch()
996 static bool PartialMatch(const ::std::string& str, const RE& re) { in PartialMatch() function
997 return PartialMatch(str.c_str(), re); in PartialMatch()
1001 static bool PartialMatch(const char* str, const RE& re);
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp46 AvailabilityAttr const *PartialMatch = nullptr; in getAttrForPlatform() local
76 PartialMatch = Avail; in getAttrForPlatform()
80 return PartialMatch; in getAttrForPlatform()
H A DSemaHLSL.cpp792 AvailabilityAttr const *PartialMatch = nullptr; in FindAvailabilityAttr() local
807 PartialMatch = Avail; in FindAvailabilityAttr()
811 return PartialMatch; in FindAvailabilityAttr()
/src/contrib/googletest/googletest/src/
H A Dgtest-port.cc704 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
963 bool RE::PartialMatch(const char* str, const RE& re) { in PartialMatch() function in testing::internal::RE
/src/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h814 : RE::PartialMatch(s2, *regex_);