Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp739 ASTContext &ast, QualType qual_type) { in QualTypeMatchesBitSize() argument
740 uint64_t qual_type_bit_size = ast.getTypeSize(qual_type); in QualTypeMatchesBitSize()
2556 clang::QualType qual_type = RemoveWrappingTypes(type.getCanonicalType()); in GetDeclContextForType() local
2557 const clang::Type::TypeClass type_class = qual_type->getTypeClass(); in GetDeclContextForType()
2560 return llvm::cast<clang::ObjCObjectType>(qual_type.getTypePtr()) in GetDeclContextForType()
2564 llvm::cast<clang::ObjCObjectPointerType>(qual_type.getTypePtr()) in GetDeclContextForType()
2567 return llvm::cast<clang::RecordType>(qual_type)->getDecl(); in GetDeclContextForType()
2569 return llvm::cast<clang::EnumType>(qual_type)->getDecl(); in GetDeclContextForType()
2582 clang::QualType qual_type, in GetCompleteRecordType() argument
2584 assert(qual_type->isRecordType()); in GetCompleteRecordType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtil.cpp55 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 DNameSearchContext.cpp54 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 DClangASTImporter.cpp366 clang::QualType qual_type( in CanImport() local
369 const clang::Type::TypeClass type_class = qual_type->getTypeClass(); in CanImport()
373 qual_type->getAsCXXRecordDecl(); in CanImport()
382 llvm::cast<clang::EnumType>(qual_type)->getDecl(); in CanImport()
392 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in CanImport()
407 llvm::cast<clang::TypedefType>(qual_type) in CanImport()
414 llvm::cast<clang::AutoType>(qual_type) in CanImport()
420 llvm::cast<clang::ElaboratedType>(qual_type) in CanImport()
427 llvm::cast<clang::ParenType>(qual_type)->desugar().getAsOpaquePtr())); in CanImport()
440 clang::QualType qual_type( in Import() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp368 clang::QualType qual_type = BuildType(ast_ctx, lexer, for_expression); in RealizeType() local
369 return ast_ctx.GetType(qual_type); in RealizeType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.cpp183 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 DPDBASTParser.cpp1310 clang::QualType qual_type = decl->getType(); in AddRecordMembers() local
1311 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers()
1314 if (qual_type->isIntegralOrEnumerationType()) { in AddRecordMembers()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp262 auto qual_type = ClangUtil::GetQualType(type); in PrepareContextToReceiveMembers() local
263 if (ast_importer.RequireCompleteType(qual_type)) in PrepareContextToReceiveMembers()