Searched refs:qual_type (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2663 qual_type = RemoveWrappingTypes(qual_type); in GetCompleteQualType() 3702 if (qual_type.isNull()) in GetCXXClassName() 3717 return !qual_type.isNull() && qual_type->getAsCXXRecordDecl() != nullptr; in IsCXXClassType() 3737 if (!qual_type.isNull() && qual_type->isObjCObjectPointerType()) { in IsObjCObjectPointerType() 3739 if (!qual_type->isObjCClassType() && !qual_type->isObjCIdType()) { in IsObjCObjectPointerType() 3781 qual_type = RemoveWrappingTypes(qual_type, in GetTypeName() 4284 qual_type = qual_type.getUnqualifiedType(); in GetFullyUnqualifiedType_Impl() 4288 return qual_type; in GetFullyUnqualifiedType_Impl() 8292 if (qual_type.isNull()) in CompleteTagDeclarationDefinition() 8467 qual_type.dump(); in dump() [all …]
|
| /llvm-project-15.0.7/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 | 56 QualType qual_type(ClangUtil::GetQualType(type)); in AddFunDecl() local 81 ast, context, SourceLocation(), SourceLocation(), decl_name, qual_type, in AddFunDecl() 91 qual_type.getTypePtr()->getAs<FunctionProtoType>(); in AddFunDecl() 148 QualType qual_type = ClangUtil::GetQualType(clang_type); in AddTypeDecl() local 151 llvm::dyn_cast<TypedefType>(qual_type)) { in AddTypeDecl() 157 } else if (const TagType *tag_type = qual_type->getAs<TagType>()) { in AddTypeDecl() 164 qual_type->getAs<ObjCObjectType>()) { in AddTypeDecl()
|
| H A D | ClangASTImporter.cpp | 362 clang::QualType qual_type( in CanImport() local 369 qual_type->getAsCXXRecordDecl(); in CanImport() 378 llvm::cast<clang::EnumType>(qual_type)->getDecl(); in CanImport() 388 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in CanImport() 436 clang::QualType qual_type( in Import() local 443 qual_type->getAsCXXRecordDecl(); in Import() 446 return CompleteAndFetchChildren(qual_type); in Import() 452 llvm::cast<clang::EnumType>(qual_type)->getDecl(); in Import() 455 return CompleteAndFetchChildren(qual_type); in Import() 462 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in Import() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | UdtRecordCompleter.cpp | 169 clang::QualType qual_type = decl->getType(); in visitKnownMember() local 170 unsigned type_width = decl->getASTContext().getIntWidth(qual_type); in visitKnownMember() 173 if (qual_type->isIntegralOrEnumerationType()) { in visitKnownMember()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTypeEncodingParser.cpp | 363 clang::QualType qual_type = BuildType(ast_ctx, lexer, for_expression); in RealizeType() local 364 return ast_ctx.GetType(qual_type); in RealizeType()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 1299 clang::QualType qual_type = decl->getType(); in AddRecordMembers() local 1300 unsigned type_width = m_ast.getASTContext().getIntWidth(qual_type); in AddRecordMembers() 1303 if (qual_type->isIntegralOrEnumerationType()) { in AddRecordMembers()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 276 auto qual_type = ClangUtil::GetQualType(type); in PrepareContextToReceiveMembers() local 277 if (ast_importer.RequireCompleteType(qual_type)) in PrepareContextToReceiveMembers()
|