Searched refs:any_cast (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h101 template <class T> friend T any_cast(const Any &Value);
102 template <class T> friend T any_cast(Any &Value);
103 template <class T> friend T any_cast(Any &&Value);
104 template <class T> friend const T *any_cast(const Any *Value);
105 template <class T> friend T *any_cast(Any *Value);
121 template <class T> T any_cast(const Any &Value) { function in namespace:llvm
123 *any_cast<std::remove_cv_t<std::remove_reference_t<T>>>(&Value));
126 template <class T> T any_cast(Any &Value) { function in namespace:llvm
128 *any_cast<std::remove_cv_t<std::remove_reference_t<T>>>(&Value));
131 template <class T> T any_cast(An function in namespace:llvm
136 template <class T> const T *any_cast(const Any *Value) { function in namespace:llvm
144 template <class T> T *any_cast(Any *Value) { function in namespace:llvm
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp36 return std::make_pair(any_cast<const Module *>(IR), std::string());
39 const Function *F = any_cast<const Function *>(IR);
47 const LazyCallGraph::SCC *C = any_cast<const LazyCallGraph::SCC *>(IR);
59 const Loop *L = any_cast<const Loop *>(IR);
122 const Module *M = any_cast<const Module *>(IR);
129 const Function *F = any_cast<const Function *>(IR);
136 const LazyCallGraph::SCC *C = any_cast<const LazyCallGraph::SCC *>(IR);
144 const Loop *L = any_cast<const Loop *>(IR);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DRichManglingContext.h101 return llvm::any_cast<ParserT *>(parser);
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h4137 void any_cast() {} function in namespace:testing::internal::any_cast_matcher
4150 const T* ptr = any_cast<T>(&value);
4154 const T* elem = any_cast<T>(&value);
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc6735 friend const T* any_cast(const SampleAnyType* any) { function in class:testing::gmock_matchers_test::SampleAnyType

Completed in 146 milliseconds