Home
last modified time | relevance | path

Searched refs:pointee_type (Results 1 – 13 of 13) sorted by relevance

/src/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp203 bool CompilerType::IsPointerType(CompilerType *pointee_type) const { in IsPointerType()
206 return type_system_sp->IsPointerType(m_type, pointee_type); in IsPointerType()
208 if (pointee_type) in IsPointerType()
209 pointee_type->Clear(); in IsPointerType()
213 bool CompilerType::IsPointerOrReferenceType(CompilerType *pointee_type) const { in IsPointerOrReferenceType()
216 return type_system_sp->IsPointerOrReferenceType(m_type, pointee_type); in IsPointerOrReferenceType()
218 if (pointee_type) in IsPointerOrReferenceType()
219 pointee_type->Clear(); in IsPointerOrReferenceType()
223 bool CompilerType::IsReferenceType(CompilerType *pointee_type, in IsReferenceType() argument
227 return type_system_sp->IsReferenceType(m_type, pointee_type, is_rvalue); in IsReferenceType()
[all …]
H A DVariable.cpp617 CompilerType pointee_type(compiler_type.GetPointeeType()); in PrivateAutoComplete() local
622 pointee_type.GetCanonicalType(), request); in PrivateAutoComplete()
627 pointee_type.GetCanonicalType(), request); in PrivateAutoComplete()
/src/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp39 CompilerType pointee_type(valobj_type.GetPointeeType()); in DerefToNSErrorPointer() local
40 Flags pointee_flags(pointee_type.GetTypeInfo()); in DerefToNSErrorPointer()
/src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h181 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
183 bool IsPointerOrReferenceType(CompilerType *pointee_type = nullptr) const;
185 bool IsReferenceType(CompilerType *pointee_type = nullptr,
H A DTypeSystem.h201 CompilerType *pointee_type) = 0;
449 CompilerType *pointee_type) = 0;
491 CompilerType *pointee_type, bool *is_rvalue) = 0;
/src/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp206 CompilerType pointee_type; in GetVTableAddress() local
208 uint32_t type_info = this_type.GetTypeInfo(&pointee_type); in GetVTableAddress()
216 type_info = pointee_type.GetTypeInfo(); in GetVTableAddress()
3185 QualType pointee_type = block_pointer_type->getPointeeType(); in IsBlockPointerType() local
3186 QualType function_pointer_type = m_ast_up->getPointerType(pointee_type); in IsBlockPointerType()
3249 CompilerType *pointee_type) { in IsPointerType() argument
3264 if (pointee_type) in IsPointerType()
3265 pointee_type->SetCompilerType( in IsPointerType()
3272 if (pointee_type) in IsPointerType()
3273 pointee_type->SetCompilerType( in IsPointerType()
[all …]
H A DTypeSystemClang.h713 CompilerType *pointee_type) override;
716 CompilerType *pointee_type) override;
719 CompilerType *pointee_type, bool *is_rvalue) override;
1044 const CompilerType &pointee_type);
/src/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp188 CompilerType pointee_type = type.GetPointeeType(); in TypeHasVTable() local
189 if (pointee_type) in TypeHasVTable()
190 type = pointee_type; in TypeHasVTable()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp518 clang::QualType pointee_type = GetOrCreateType(pointer.ReferentType); in CreatePointerType() local
522 if (pointee_type.isNull()) in CreatePointerType()
565 pointee_type, class_type.getTypePtr()); in CreatePointerType()
570 pointer_type = m_clang.getASTContext().getLValueReferenceType(pointee_type); in CreatePointerType()
572 pointer_type = m_clang.getASTContext().getRValueReferenceType(pointee_type); in CreatePointerType()
574 pointer_type = m_clang.getASTContext().getPointerType(pointee_type); in CreatePointerType()
/src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp827 TypeFromUser pointee_type = in LookUpLldbClass() local
835 AddContextClassType(context, pointee_type); in LookUpLldbClass()
874 TypeFromUser pointee_type = in LookUpLldbClass() local
878 ClangUtil::GetQualType(pointee_type).getAsString()); in LookUpLldbClass()
880 AddContextClassType(context, pointee_type); in LookUpLldbClass()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp740 Type *pointee_type = symbol_file->ResolveTypeUID( in CreateLLDBTypeFromPDBType() local
742 if (!pointee_type) in CreateLLDBTypeFromPDBType()
754 pointee_type->GetForwardCompilerType()); in CreateLLDBTypeFromPDBType()
765 pointer_ast_type = pointee_type->GetFullCompilerType(); in CreateLLDBTypeFromPDBType()
/src/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1530 return Pointer<pointee_type>(new pointee_type(pointee)); in ACTION_TEMPLATE()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1434 Type *pointee_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParsePointerToMemberType() local
1440 if ((class_type == nullptr) || (pointee_type == nullptr)) in ParsePointerToMemberType()
1443 CompilerType pointee_clang_type = pointee_type->GetForwardCompilerType(); in ParsePointerToMemberType()