Searched refs:clang_type (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 606 CompilerType clang_type; in ParseTypeModifier() local 667 clang_type = m_ast.GetBasicType(eBasicTypeNullPtr); in ParseTypeModifier() 676 clang_type = m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize( in ParseTypeModifier() 711 if (!clang_type && (encoding_data_type == Type::eEncodingIsPointerUID || in ParseTypeModifier() 735 clang_type = m_ast.CreateBlockPointerType( in ParseTypeModifier() 760 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseTypeModifier() 772 clang_type = m_ast.GetBasicType(eBasicTypeObjCClass); in ParseTypeModifier() 784 clang_type = m_ast.GetBasicType(eBasicTypeObjCSel); in ParseTypeModifier() 806 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseTypeModifier() 818 &attrs.decl, clang_type, resolve_state, payload); in ParseTypeModifier() [all …]
|
H A D | DWARFASTParserClang.h | 365 lldb_private::CompilerType &clang_type); 368 lldb_private::CompilerType &clang_type); 397 lldb_private::CompilerType clang_type, 424 lldb_private::CompilerType clang_type,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | NameSearchContext.cpp | 144 NameSearchContext::AddTypeDecl(const CompilerType &clang_type) { in AddTypeDecl() argument 145 if (ClangUtil::IsClangType(clang_type)) { in AddTypeDecl() 146 QualType qual_type = ClangUtil::GetQualType(clang_type); in AddTypeDecl()
|
H A D | ClangASTSource.cpp | 213 CompilerType clang_type(type_sp->GetFullCompilerType()); in FindCompleteType() local 215 if (!ClangUtil::IsClangType(clang_type)) in FindCompleteType() 219 ClangUtil::GetQualType(clang_type)->getAs<TagType>(); in FindCompleteType() 241 CompilerType clang_type(type_sp->GetFullCompilerType()); in FindCompleteType() local 243 if (!ClangUtil::IsClangType(clang_type)) in FindCompleteType() 247 ClangUtil::GetQualType(clang_type)->getAs<TagType>(); in FindCompleteType()
|
H A D | ClangExpressionDeclMap.cpp | 1759 CompilerType clang_type = in AddOneRegister() local 1763 if (!clang_type) { in AddOneRegister() 1769 TypeFromParser parser_clang_type(clang_type); in AddOneRegister()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 410 CompilerType clang_type = in CreateLLDBTypeFromPDBType() local 412 if (!clang_type.IsValid()) { in CreateLLDBTypeFromPDBType() 421 clang_type = m_ast.CreateRecordType( in CreateLLDBTypeFromPDBType() 424 assert(clang_type.IsValid()); in CreateLLDBTypeFromPDBType() 427 m_ast.GetAsCXXRecordDecl(clang_type.GetOpaqueQualType()); in CreateLLDBTypeFromPDBType() 435 TypeSystemClang::StartTagDeclarationDefinition(clang_type); in CreateLLDBTypeFromPDBType() 441 TypeSystemClang::CompleteTagDeclarationDefinition(clang_type); in CreateLLDBTypeFromPDBType() 443 TypeSystemClang::SetHasExternalStorage(clang_type.GetOpaqueQualType(), in CreateLLDBTypeFromPDBType() 452 TypeSystemClang::SetHasExternalStorage(clang_type.GetOpaqueQualType(), in CreateLLDBTypeFromPDBType() 461 clang_type = clang_type.AddConstModifier(); in CreateLLDBTypeFromPDBType() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 878 lldb::opaque_compiler_type_t clang_type = in GetBasicType() local 881 if (clang_type) in GetBasicType() 882 return CompilerType(weak_from_this(), clang_type); in GetBasicType() 4426 CompilerType clang_type; in GetMemberFunctionAtIndex() local 4457 clang_type = GetType(cxx_method_decl->getType()); in GetMemberFunctionAtIndex() 4535 return TypeMemberFunctionImpl(clang_type, clang_decl, name, kind); in GetMemberFunctionAtIndex() 7186 const clang::Type *clang_type = ClangUtil::GetQualType(ct).getTypePtr(); in IsTemplateType() local 7187 if (auto *cxx_record_decl = dyn_cast<clang::TagType>(clang_type)) in IsTemplateType() 8507 const clang::Type *clang_type = enum_qual_type.getTypePtr(); in AddEnumerationValueToEnumerationType() local 8509 if (!clang_type) in AddEnumerationValueToEnumerationType() [all …]
|