Home
last modified time | relevance | path

Searched refs:pointer_type (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp729 assert(pointer_type); in CreateLLDBTypeFromPDBType()
736 pointer_type->getPointeeType()->getSymIndexId()); in CreateLLDBTypeFromPDBType()
740 if (pointer_type->isPointerToDataMember() || in CreateLLDBTypeFromPDBType()
741 pointer_type->isPointerToMemberFunction()) { in CreateLLDBTypeFromPDBType()
754 pointer_type->getLength(), nullptr, LLDB_INVALID_UID, in CreateLLDBTypeFromPDBType()
761 if (pointer_type->isReference()) in CreateLLDBTypeFromPDBType()
763 else if (pointer_type->isRValueReference()) in CreateLLDBTypeFromPDBType()
768 if (pointer_type->isConstType()) in CreateLLDBTypeFromPDBType()
771 if (pointer_type->isVolatileType()) in CreateLLDBTypeFromPDBType()
774 if (pointer_type->isRestrictedType()) in CreateLLDBTypeFromPDBType()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp732 clang::QualType pointer_type; in CreatePointerType() local
734 pointer_type = m_clang.getASTContext().getLValueReferenceType(pointee_type); in CreatePointerType()
736 pointer_type = m_clang.getASTContext().getRValueReferenceType(pointee_type); in CreatePointerType()
738 pointer_type = m_clang.getASTContext().getPointerType(pointee_type); in CreatePointerType()
741 pointer_type.addConst(); in CreatePointerType()
744 pointer_type.addVolatile(); in CreatePointerType()
747 pointer_type.addRestrict(); in CreatePointerType()
749 return pointer_type; in CreatePointerType()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp513 CompilerType pointer_type = compiler_type.GetPointerType(); in DoExecute() local
514 if (pointer_type.IsValid()) in DoExecute()
515 compiler_type = pointer_type; in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp268 const clang::Type *pointer_type = pointer_qual_type.getTypePtr(); in CreateResultVariable() local
271 pointer_type->getAs<clang::PointerType>(); in CreateResultVariable()
273 pointer_type->getAs<clang::ObjCObjectPointerType>(); in CreateResultVariable()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2986 CompilerType pointer_type(type.GetPointerType()); in CreateValueObjectFromAddress() local
2987 if (pointer_type) { in CreateValueObjectFromAddress()
2991 exe_ctx.GetBestExecutionContextScope(), pointer_type, in CreateValueObjectFromAddress()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dmemory921 typedef void* pointer_type;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def149 HANDLE_DW_TAG(0x000f, pointer_type, 2, DWARF, DW_KIND_TYPE)
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp5411 const clang::PointerType *pointer_type = in GetNumChildren() local
5413 clang::QualType pointee_type(pointer_type->getPointeeType()); in GetNumChildren()
7022 const clang::PointerType *pointer_type = in GetIndexOfChildWithName() local
7024 CompilerType pointee_type = GetType(pointer_type->getPointeeType()); in GetIndexOfChildWithName()