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

Derived Classes

tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
   19 class CPPLanguageRuntime : public LanguageRuntime {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
   34 class ObjCLanguageRuntime : public LanguageRuntime {

Declarations

tools/lldb/include/lldb/lldb-forward.h
  121 class LanguageRuntime;

References

include/llvm/Support/Casting.h
   57   static inline bool doit(const From &Val) {
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  263 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*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  305 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  306 cast_or_null(Y *Val) {
tools/lldb/include/lldb/Target/LanguageRuntime.h
   53   LanguageRuntime *m_language_runtime;
   65   static LanguageRuntime *FindPlugin(Process *process,
tools/lldb/include/lldb/Target/Process.h
 2194   std::vector<LanguageRuntime *>
 2197   LanguageRuntime *GetLanguageRuntime(lldb::LanguageType language,
tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
  128   LanguageRuntime *m_cxx_language_runtime;
  129   LanguageRuntime *m_objc_language_runtime;
tools/lldb/include/lldb/lldb-forward.h
  349 typedef std::shared_ptr<lldb_private::LanguageRuntime> LanguageRuntimeSP;
tools/lldb/include/lldb/lldb-private-interfaces.h
   54 typedef LanguageRuntime *(*LanguageRuntimeCreateInstance)(
tools/lldb/source/API/SBTarget.cpp
 1846       for (auto *runtime : process_sp->GetLanguageRuntimes()) {
 1900       for (auto *runtime : process_sp->GetLanguageRuntimes()) {
tools/lldb/source/Commands/CommandObjectLanguage.cpp
   27   LanguageRuntime::InitializeCommands(this);
tools/lldb/source/Core/ValueObject.cpp
  342   if (auto *runtime =
 1125     if (LanguageRuntime *runtime = process->GetLanguageRuntime(language)) {
 1727   if (auto *runtime = process->GetLanguageRuntime(GetVariable()->GetLanguage()))
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  149   LanguageRuntime *runtime = nullptr;
tools/lldb/source/Expression/IRExecutionUnit.cpp
  916     for (LanguageRuntime *runtime : process_sp->GetLanguageRuntimes()) {
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
  322   lldb_private::LanguageRuntime *lang_rt = nullptr;
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
   19 class CPPLanguageRuntime : public LanguageRuntime {
   48   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  304 LanguageRuntime *
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
   35   static lldb_private::LanguageRuntime *
   46   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
  402     m_objc_exception_bp_sp = LanguageRuntime::CreateExceptionBreakpoint(
  470   auto *cpp_runtime = m_process->GetLanguageRuntime(eLanguageTypeC_plus_plus);
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
   38   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
   67 lldb_private::LanguageRuntime *
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
   28   static lldb_private::LanguageRuntime *
   39   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  491 LanguageRuntime *AppleObjCRuntimeV2::CreateInstance(Process *process,
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
   34   static lldb_private::LanguageRuntime *
   45   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
   34 class ObjCLanguageRuntime : public LanguageRuntime {
  203   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  777 LanguageRuntime *
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
  310   static lldb_private::LanguageRuntime *
  324   static bool classof(const LanguageRuntime *runtime) {
tools/lldb/source/Target/LanguageRuntime.cpp
   64       LanguageRuntime *language_runtime =
  172           LanguageRuntime *language_runtime =
  197   LanguageRuntime *m_language_runtime;
  202 LanguageRuntime *LanguageRuntime::FindPlugin(Process *process,
  204   std::unique_ptr<LanguageRuntime> language_runtime_up;
tools/lldb/source/Target/Process.cpp
 1489 std::vector<LanguageRuntime *>
 1491   std::vector<LanguageRuntime *> language_runtimes;
 1503     if (LanguageRuntime *runtime = GetLanguageRuntime(lang_type, retry_if_null))
 1510 LanguageRuntime *Process::GetLanguageRuntime(lldb::LanguageType language,
 1515   LanguageRuntime *runtime = nullptr;
 1522         LanguageRuntime::FindPlugin(this, language));
 1548     LanguageRuntime *runtime = GetLanguageRuntime(known_type);
 1552   for (LanguageRuntime *runtime : GetLanguageRuntimes()) {
tools/lldb/source/Target/Target.cpp
  568   BreakpointSP exc_bkpt_sp = LanguageRuntime::CreateExceptionBreakpoint(
 1623       for (LanguageRuntime *runtime : m_process_sp->GetLanguageRuntimes()) {
tools/lldb/source/Target/Thread.cpp
 2204   for (LanguageRuntime *runtime : GetProcess()->GetLanguageRuntimes()) {
 2219   for (LanguageRuntime *runtime : GetProcess()->GetLanguageRuntimes()) {
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
   90     for (LanguageRuntime *runtime :
usr/include/c++/7.4.0/bits/shared_ptr.h
   93     class shared_ptr : public __shared_ptr<_Tp>
  107       using element_type = typename __shared_ptr<_Tp>::element_type;
  129 	shared_ptr(_Yp* __p) : __shared_ptr<_Tp>(__p) { }
  236 	shared_ptr(const shared_ptr<_Yp>& __r) noexcept
  253 	shared_ptr(shared_ptr<_Yp>&& __r) noexcept
  299 	_Assignable<const shared_ptr<_Yp>&>
  300 	operator=(const shared_ptr<_Yp>& __r) noexcept
  324 	_Assignable<shared_ptr<_Yp>>
  325 	operator=(shared_ptr<_Yp>&& __r) noexcept
  352       shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t)
usr/include/c++/7.4.0/bits/shared_ptr_base.h
  882     : is_convertible<_Yp*, _Tp*>::type
  882     : is_convertible<_Yp*, _Tp*>::type
  946     : is_convertible<_Yp*, _Tp*>::type
  946     : is_convertible<_Yp*, _Tp*>::type
  956       using element_type = _Tp;
 1035     : public __shared_ptr_access<_Tp, _Lp>
 1038       using element_type = typename remove_extent<_Tp>::type;
 1078 	__shared_ptr(_Yp* __p)
 1081 	  static_assert( !is_void<_Yp>::value, "incomplete type" );
 1082 	  static_assert( sizeof(_Yp) > 0, "incomplete type" );
 1126 	__shared_ptr(const __shared_ptr<_Yp, _Lp>& __r) noexcept
 1138 	__shared_ptr(__shared_ptr<_Yp, _Lp>&& __r) noexcept
 1192 	_Assignable<_Yp>
 1193 	operator=(const __shared_ptr<_Yp, _Lp>& __r) noexcept
 1218 	_Assignable<_Yp>
 1219 	operator=(__shared_ptr<_Yp, _Lp>&& __r) noexcept
 1272       swap(__shared_ptr<_Tp, _Lp>& __other) noexcept
 1344       __shared_ptr(const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t)
 1377 	typename enable_if<!__has_esft_base<_Yp2>::value>::type
 1378 	_M_enable_shared_from_this_with(_Yp*) noexcept
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1942     { typedef _Tp     type; };
 1983     { typedef _Up     type; };