Home
last modified time | relevance | path

Searched refs:GetPointeeType (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h312 CompilerType GetPointeeType() const { in GetPointeeType() function
314 return type_sp->GetForwardCompilerType().GetPointeeType(); in GetPointeeType()
315 return compiler_type.GetPointeeType(); in GetPointeeType()
414 TypeImpl GetPointeeType() const;
H A DCompilerType.h226 CompilerType GetPointeeType() const;
H A DTypeSystem.h250 virtual CompilerType GetPointeeType(lldb::opaque_compiler_type_t type) = 0;
H A DClangASTContext.h701 CompilerType GetPointeeType(lldb::opaque_compiler_type_t type) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DType.cpp922 TypeImpl TypeImpl::GetPointeeType() const { in GetPointeeType() function in TypeImpl
926 return TypeImpl(m_static_type.GetPointeeType(), in GetPointeeType()
927 m_dynamic_type.GetPointeeType()); in GetPointeeType()
929 return TypeImpl(m_static_type.GetPointeeType()); in GetPointeeType()
H A DCompilerType.cpp260 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
428 CompilerType CompilerType::GetPointeeType() const { in GetPointeeType() function in CompilerType
430 return m_type_system->GetPointeeType(m_type); in GetPointeeType()
H A DVariable.cpp653 CompilerType pointee_type(compiler_type.GetPointeeType()); in PrivateAutoComplete()
H A DClangASTContext.cpp4873 ClangASTContext::GetPointeeType(lldb::opaque_compiler_type_t type) { in GetPointeeType() function in ClangASTContext
6134 count = GetPointeeType(type).GetNumDirectBaseClasses(); in GetNumDirectBaseClasses()
6283 return GetPointeeType(type).GetDirectBaseClassAtIndex(idx, bit_offset_ptr); in GetDirectBaseClassAtIndex()
6878 CompilerType pointee_clang_type(GetPointeeType(type)); in GetChildCompilerTypeAtIndex()
6954 CompilerType pointee_clang_type(GetPointeeType(type)); in GetChildCompilerTypeAtIndex()
7388 CompilerType pointee_clang_type(GetPointeeType(type)); in GetIndexOfChildMemberWithName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp41 CompilerType pointee_type(valobj_type.GetPointeeType()); in DerefToNSErrorPointer()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxUnorderedMap.cpp121 m_element_type = m_element_type.GetPointeeType(); in GetChildAtIndex()
H A DLibCxxVector.cpp147 m_element_type = data_type_finder_sp->GetCompilerType().GetPointeeType(); in Update()
H A DLibStdcpp.cpp209 item_ptr->GetCompilerType().GetPointeeType()); in Update()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBType.h131 lldb::SBType GetPointeeType();
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBType.cpp145 SBType SBType::GetPointeeType() { in GetPointeeType() function in SBType
148 return SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointeeType()))); in GetPointeeType()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBUtilSBValue.cpp329 m_rValue.GetType().GetPointeeType().GetBasicType(); in IsPointeeCharType()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1001 this_type->GetForwardCompilerType().GetPointeeType(); in FindExternalVisibleDecls()
1117 self_clang_type = self_clang_type.GetPointeeType(); in FindExternalVisibleDecls()
/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DFormatManager.cpp219 CompilerType non_ptr_type = compiler_type.GetPointeeType(); in GetPossibleMatches()