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

Derived Classes

tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
   59 class ClangFunctionCaller : public FunctionCaller {

Declarations

tools/lldb/include/lldb/lldb-forward.h
  164 class FunctionCaller;

References

tools/lldb/include/lldb/Expression/UtilityFunction.h
  100   FunctionCaller *MakeFunctionCaller(const CompilerType &return_type,
  107   FunctionCaller *GetFunctionCaller() { return m_caller_up.get(); }
  115   std::unique_ptr<FunctionCaller> m_caller_up;
tools/lldb/include/lldb/Symbol/ClangASTContext.h
 1030   FunctionCaller *GetFunctionCaller(const CompilerType &return_type,
tools/lldb/include/lldb/Symbol/TypeSystem.h
  462   virtual FunctionCaller *GetFunctionCaller(const CompilerType &return_type,
tools/lldb/include/lldb/Target/Target.h
 1055   FunctionCaller *GetFunctionCallerForLanguage(lldb::LanguageType language,
tools/lldb/include/lldb/lldb-forward.h
  338 typedef std::shared_ptr<lldb_private::FunctionCaller> FunctionCallerSP;
tools/lldb/source/Expression/UtilityFunction.cpp
   61 FunctionCaller *UtilityFunction::MakeFunctionCaller(
tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
   59 class ClangFunctionCaller : public FunctionCaller {
tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
  565   FunctionCaller *function_caller =
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
  124   std::unique_ptr<FunctionCaller> m_print_object_caller_up;
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
 1331   FunctionCaller *get_class_info_function = nullptr;
 1595   FunctionCaller *get_shared_cache_class_info_function = nullptr;
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
  767   FunctionCaller *impl_function_caller = nullptr;
 1142 FunctionCaller *
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
   31   FunctionCaller *GetLookupImplementationFunctionCaller();
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
   69   FunctionCaller *m_impl_function; // This is a pointer to a impl function that
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  706   FunctionCaller *do_dlopen_function = nullptr;
  770   FunctionCaller *do_dlopen_function = nullptr;
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.cpp
  136   FunctionCaller *get_item_info_caller = nullptr;
  353   FunctionCaller *func_caller = m_get_item_info_impl_code->GetFunctionCaller();
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.cpp
  141   FunctionCaller *get_pending_items_caller = nullptr;
  334   FunctionCaller *get_pending_items_caller =
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
  152   FunctionCaller *get_queues_caller = nullptr;
  332   FunctionCaller *get_queues_caller =
tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
  147   FunctionCaller *get_thread_item_info_caller = nullptr;
  339   FunctionCaller *get_thread_item_info_caller = nullptr;
tools/lldb/source/Symbol/ClangASTContext.cpp
10313 FunctionCaller *ClangASTContextForExpressions::GetFunctionCaller(
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;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
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>