OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:any_cast
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h
106
template <class T> friend T
any_cast
(const Any &Value);
107
template <class T> friend T
any_cast
(Any &Value);
108
template <class T> friend T
any_cast
(Any &&Value);
109
template <class T> friend const T *
any_cast
(const Any *Value);
110
template <class T> friend T *
any_cast
(Any *Value);
125
template <class T> T
any_cast
(const Any &Value) {
function in namespace:llvm
126
return static_cast<T>(*
any_cast
<remove_cvref_t<T>>(&Value));
129
template <class T> T
any_cast
(Any &Value) {
function in namespace:llvm
130
return static_cast<T>(*
any_cast
<remove_cvref_t<T>>(&Value));
133
template <class T> T
any_cast
(Any &&Value)
function in namespace:llvm
137
template <class T> const T *
any_cast
(const Any *Value) {
function in namespace:llvm
145
template <class T> T *
any_cast
(Any *Value) {
function in namespace:llvm
[
all
...]
/src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h
3382
void
any_cast
() {}
function in namespace:testing::internal::any_cast_matcher
3395
const T* ptr =
any_cast
<T>(&value);
3399
const T* elem =
any_cast
<T>(&value);
Completed in 32 milliseconds
Indexes created Thu Jun 11 00:25:07 UTC 2026