Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h97 CustomName = 1, enumerator
181 setState(F, CustomName); in setAvailableWithName()
463 assert(State == TargetLibraryInfoImpl::CustomName); in getName()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp117 std::optional<StringRef> CustomName; member
121 : Kind(AKind), CustomName(Name) { in AllocationFamily()
122 assert((Kind != AF_Custom || CustomName.has_value()) && in AllocationFamily()
126 if (Kind == AF_Custom && CustomName.value() == "malloc") { in AllocationFamily()
128 CustomName = std::nullopt; in AllocationFamily()
133 return std::tie(Kind, CustomName) == std::tie(Other.Kind, Other.CustomName); in operator ==()
144 ID.AddString(CustomName.value()); in Profile()
2162 os << Family.CustomName.value(); in printExpectedAllocName()
2188 os << "function that takes ownership of '" << Family.CustomName.value() in printExpectedDeallocName()
/freebsd/contrib/googletest/googletest/test/
H A Dgtest-typed-test_test.cc326 INSTANTIATE_TYPED_TEST_SUITE_P(CustomName, TypeParametrizedTestWithNames,