reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/ADT/Any.h
  105   template <class T> friend T *any_cast(Any *Value);

References

include/llvm/ADT/Any.h
  131   return static_cast<T>(*any_cast<U>(&Value));
  137   return static_cast<T>(std::move(*any_cast<U>(&Value)));
unittests/ADT/AnyTest.cpp
  118   EXPECT_EQ(7, *llvm::any_cast<int>(&A));
  119   int *N = llvm::any_cast<int>(&A);