Searched refs:qual_type (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 755 ASTContext &ast, QualType qual_type) { in QualTypeMatchesBitSize() argument 756 uint64_t qual_type_bit_size = ast.getTypeSize(qual_type); in QualTypeMatchesBitSize() 2585 clang::QualType qual_type = RemoveWrappingTypes(type.getCanonicalType()); in GetDeclContextForType() local 2586 const clang::Type::TypeClass type_class = qual_type->getTypeClass(); in GetDeclContextForType() 2589 return llvm::cast<clang::ObjCObjectType>(qual_type.getTypePtr()) in GetDeclContextForType() 2593 llvm::cast<clang::ObjCObjectPointerType>(qual_type.getTypePtr()) in GetDeclContextForType() 2596 return llvm::cast<clang::RecordType>(qual_type)->getDecl(); in GetDeclContextForType() 2598 return llvm::cast<clang::EnumType>(qual_type)->getDecl(); in GetDeclContextForType() 2611 clang::QualType qual_type, in GetCompleteRecordType() argument 2613 assert(qual_type->isRecordType()); in GetCompleteRecordType() [all …]
|
| H A D | TypeSystemClang.h | 1197 llvm::Expected<uint64_t> GetObjCBitSize(clang::QualType qual_type,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUtil.cpp | 55 QualType qual_type(GetQualType(ct)); in RemoveFastQualifiers() local 56 qual_type.removeLocalFastQualifiers(); in RemoveFastQualifiers() 57 return CompilerType(ct.GetTypeSystem(), qual_type.getAsOpaquePtr()); in RemoveFastQualifiers() 61 clang::QualType qual_type = ClangUtil::GetCanonicalQualType(type); in GetAsTagDecl() local 62 if (qual_type.isNull()) in GetAsTagDecl() 65 return qual_type->getAsTagDecl(); in GetAsTagDecl()
|
| H A D | NameSearchContext.cpp | 54 QualType qual_type(ClangUtil::GetQualType(type)); in AddFunDecl() local 79 ast, context, SourceLocation(), SourceLocation(), decl_name, qual_type, in AddFunDecl() 89 qual_type.getTypePtr()->getAs<FunctionProtoType>(); in AddFunDecl() 146 QualType qual_type = ClangUtil::GetQualType(clang_type); in AddTypeDecl() local 149 llvm::dyn_cast<TypedefType>(qual_type)) { in AddTypeDecl() 155 } else if (const TagType *tag_type = qual_type->getAs<TagType>()) { in AddTypeDecl() 162 qual_type->getAs<ObjCObjectType>()) { in AddTypeDecl()
|
| H A D | ClangASTImporter.cpp | 365 clang::QualType qual_type( in CanImport() local 368 const clang::Type::TypeClass type_class = qual_type->getTypeClass(); in CanImport() 372 qual_type->getAsCXXRecordDecl(); in CanImport() 381 llvm::cast<clang::EnumType>(qual_type)->getDecl(); in CanImport() 391 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in CanImport() 406 llvm::cast<clang::TypedefType>(qual_type) in CanImport() 413 llvm::cast<clang::AutoType>(qual_type) in CanImport() 419 llvm::cast<clang::ElaboratedType>(qual_type) in CanImport() 426 llvm::cast<clang::ParenType>(qual_type)->desugar().getAsOpaquePtr())); in CanImport() 439 clang::QualType qual_type( in Import() local [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTypeEncodingParser.cpp | 378 clang::QualType qual_type = BuildType(ast_ctx, lexer, for_expression); in RealizeType() local 379 return ast_ctx.GetType(qual_type); in RealizeType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | UdtRecordCompleter.cpp | 183 clang::QualType qual_type = decl->getType(); in visitKnownMember() local 184 unsigned type_width = decl->getASTContext().getIntWidth(qual_type); in visitKnownMember() 187 if (qual_type->isIntegralOrEnumerationType()) { in visitKnownMember()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 1309 clang::QualType qual_type = decl->getType(); in AddRecordMembers() local 1310 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() 1313 if (qual_type->isIntegralOrEnumerationType()) { in AddRecordMembers()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 356 auto qual_type = ClangUtil::GetQualType(type); in PrepareContextToReceiveMembers() local 357 if (ast_importer.RequireCompleteType(qual_type)) in PrepareContextToReceiveMembers()
|