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

Derived Classes

tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
   19 class AppleObjCRuntimeV1 : public AppleObjCRuntime {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
   25 class AppleObjCRuntimeV2 : public AppleObjCRuntime {

References

include/llvm/Support/Casting.h
   58     return To::classof(&Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
  475       AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
  475       AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
  848     auto *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
  848     auto *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
 1035   if (AppleObjCRuntime *objc_runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
 1035   if (AppleObjCRuntime *objc_runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
  390     AppleObjCRuntime *apple_runtime =
  391     llvm::dyn_cast_or_null<AppleObjCRuntime>(runtime);
  801   AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
  801   AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
  392     AppleObjCRuntime *apple_runtime =
  393     llvm::dyn_cast_or_null<AppleObjCRuntime>(runtime);
  439   AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
  439   AppleObjCRuntime *runtime = llvm::dyn_cast_or_null<AppleObjCRuntime>(
tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
  263     AppleObjCRuntime *apple_runtime =
  264         llvm::dyn_cast_or_null<AppleObjCRuntime>(runtime);
  334     AppleObjCRuntime *apple_runtime =
  335         llvm::dyn_cast_or_null<AppleObjCRuntime>(runtime);
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
  381     AppleObjCRuntime::ClassDescriptorSP metaclass(GetMetaclass());
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  210       if (AppleObjCRuntime::AppleIsModuleObjCLibrary(module_sp)) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
   76     if (AppleObjCRuntime::GetObjCVersion(process, objc_module_sp) ==
  261 AppleObjCRuntime::ClassDescriptorSP
  272 AppleObjCRuntime::ClassDescriptorSP
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
   19 class AppleObjCRuntimeV1 : public AppleObjCRuntime {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  499     if (AppleObjCRuntime::GetObjCVersion(process, objc_module_sp) ==
 2623 lldb_private::AppleObjCRuntime::ObjCISA
 2725     std::tie(module, function) = AppleObjCRuntime::GetExceptionThrowLocation();
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
   25 class AppleObjCRuntimeV2 : public AppleObjCRuntime {