Searched refs:pointer_type (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 733 auto *pointer_type = llvm::dyn_cast<PDBSymbolTypePointer>(&type); in CreateLLDBTypeFromPDBType() local 734 assert(pointer_type); in CreateLLDBTypeFromPDBType() 741 pointer_type->getPointeeType()->getSymIndexId()); in CreateLLDBTypeFromPDBType() 745 if (pointer_type->isPointerToDataMember() || in CreateLLDBTypeFromPDBType() 746 pointer_type->isPointerToMemberFunction()) { in CreateLLDBTypeFromPDBType() 747 auto class_parent_uid = pointer_type->getRawSymbol().getClassParentId(); in CreateLLDBTypeFromPDBType() 758 pointer_type->getSymIndexId(), ConstString(), in CreateLLDBTypeFromPDBType() 759 pointer_type->getLength(), nullptr, LLDB_INVALID_UID, in CreateLLDBTypeFromPDBType() 766 if (pointer_type->isReference()) in CreateLLDBTypeFromPDBType() 768 else if (pointer_type->isRValueReference()) in CreateLLDBTypeFromPDBType() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | builtin_new_allocator.h | 29 typedef void* pointer_type; typedef
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbAstBuilder.cpp | 568 clang::QualType pointer_type; in CreatePointerType() local 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() 577 pointer_type.addConst(); in CreatePointerType() 580 pointer_type.addVolatile(); in CreatePointerType() 583 pointer_type.addRestrict(); in CreatePointerType() 585 return pointer_type; in CreatePointerType()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | IRForTarget.cpp | 271 const clang::Type *pointer_type = pointer_qual_type.getTypePtr(); in CreateResultVariable() local 274 pointer_type->getAs<clang::PointerType>(); in CreateResultVariable() 276 pointer_type->getAs<clang::ObjCObjectPointerType>(); in CreateResultVariable()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectMemory.cpp | 512 CompilerType pointer_type = compiler_type.GetPointerType(); in DoExecute() local 513 if (pointer_type.IsValid()) in DoExecute() 514 compiler_type = pointer_type; in DoExecute()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObject.cpp | 3145 auto pointer_type = in CastBaseToDerivedType() local 3154 name, addr - offset, exe_ctx, pointer_type, /* do_deref */ false); in CastBaseToDerivedType() 3563 CompilerType pointer_type(type.GetPointerType()); in CreateValueObjectFromAddress() local 3565 pointer_type = type; in CreateValueObjectFromAddress() 3566 if (pointer_type) { in CreateValueObjectFromAddress() 3570 exe_ctx.GetBestExecutionContextScope(), pointer_type, in CreateValueObjectFromAddress()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 5466 const clang::PointerType *pointer_type = in GetNumChildren() local 5468 clang::QualType pointee_type(pointer_type->getPointeeType()); in GetNumChildren() 7116 const clang::PointerType *pointer_type = in GetIndexOfChildWithName() local 7118 CompilerType pointee_type = GetType(pointer_type->getPointeeType()); in GetIndexOfChildWithName()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | Dwarf.def | 159 HANDLE_DW_TAG(0x000f, pointer_type, 2, DWARF, DW_KIND_TYPE)
|