Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp681 CompilerType clang_type; in ParseTypeModifier()
742 clang_type = m_ast.GetBasicType(eBasicTypeNullPtr); in ParseTypeModifier()
751 clang_type = m_ast.GetBuiltinTypeForDWARFEncodingAndBitSize( in ParseTypeModifier()
786 if (!clang_type && (encoding_data_type == Type::eEncodingIsPointerUID || in ParseTypeModifier()
810 clang_type = m_ast.CreateBlockPointerType( in ParseTypeModifier()
835 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseEnum()
847 clang_type = m_ast.GetBasicType(eBasicTypeObjCClass); in ParseEnum()
859 clang_type = m_ast.GetBasicType(eBasicTypeObjCSel); in ParseEnum()
881 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseEnum()
893 &attrs.decl, clang_type, resolve_stat in ParseEnum()
600 CompilerType clang_type; ParseTypeModifier() local
892 CompilerType clang_type = m_ast.CreateEnumerationType( ParseEnum() local
962 ParseObjCMethod(const ObjCLanguage::MethodName & objc_method,const DWARFDIE & die,CompilerType clang_type,const ParsedDWARFTypeAttributes & attrs,bool is_variadic) ParseObjCMethod() argument
1008 ParseCXXMethod(const DWARFDIE & die,CompilerType clang_type,const ParsedDWARFTypeAttributes & attrs,const DWARFDIE & decl_ctx_die,bool is_static,bool & ignore_containing_context) ParseCXXMethod() argument
1214 CompilerType clang_type = ParseSubroutine() local
1369 CompilerType clang_type; ParseArrayType() local
1412 CompilerType clang_type = TypeSystemClang::CreateMemberPointerType( ParsePointerToMemberType() local
1608 CompilerType clang_type; ParseStructureLikeDIE() local
1994 CompilerType clang_type; ParseTemplateDIE() local
2107 CompleteRecordType(const DWARFDIE & die,lldb_private::Type * type,CompilerType & clang_type) CompleteRecordType() argument
2202 CompleteEnumType(const DWARFDIE & die,lldb_private::Type * type,CompilerType & clang_type) CompleteEnumType() argument
2217 CompleteTypeFromDWARF(const DWARFDIE & die,lldb_private::Type * type,CompilerType & clang_type) CompleteTypeFromDWARF() argument
2294 ParseChildEnumerators(lldb_private::CompilerType & clang_type,bool is_signed,uint32_t enumerator_byte_size,const DWARFDIE & parent_die) ParseChildEnumerators() argument
[all...]
H A DDWARFASTParserClang.h422 const lldb_private::CompilerType &clang_type);
425 const lldb_private::CompilerType &clang_type);
443 /// \param[in] clang_type The CompilerType representing the function prototype
454 lldb_private::CompilerType clang_type,
461 /// \param[in] clang_type The CompilerType representing the function prototype
481 lldb_private::CompilerType clang_type,
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp144 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 DClangASTSource.cpp214 CompilerType clang_type(type_sp->GetFullCompilerType()); in FindCompleteType()
216 if (!ClangUtil::IsClangType(clang_type)) in FindCompleteType()
220 ClangUtil::GetQualType(clang_type)->getAs<TagType>(); in FindCompleteType()
242 CompilerType clang_type(type_sp->GetFullCompilerType()); in FindCompleteType()
244 if (!ClangUtil::IsClangType(clang_type)) in FindCompleteType()
248 ClangUtil::GetQualType(clang_type)->getAs<TagType>(); in FindCompleteType()
213 CompilerType clang_type(type_sp->GetFullCompilerType()); FindCompleteType() local
241 CompilerType clang_type(type_sp->GetFullCompilerType()); FindCompleteType() local
H A DClangExpressionDeclMap.cpp1759 CompilerType clang_type = in AddOneRegister() local
1763 if (!clang_type) { in AddOneRegister()
1769 TypeFromParser parser_clang_type(clang_type); in AddOneRegister()
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp410 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 in CreateLLDBTypeFromPDBType()
[all...]
/llvm-project/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp831 CompilerType clang_type = in TEST_F()
834 TU, OptionalClangModuleID(), "foo", clang_type, StorageClass::SC_None, in TEST_F()
860 CompilerType clang_type = in TEST_F()
866 TU, OptionalClangModuleID(), "foo", clang_type, StorageClass::SC_None, in TEST_F()
789 CompilerType clang_type = TEST_F() local
818 CompilerType clang_type = TEST_F() local
/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp897 lldb::opaque_compiler_type_t clang_type = in GetBuiltinTypeForDWARFEncodingAndBitSize()
900 if (clang_type) in GetBuiltinTypeForDWARFEncodingAndBitSize()
901 return CompilerType(weak_from_this(), clang_type); in GetBuiltinTypeForDWARFEncodingAndBitSize()
4448 CompilerType clang_type; in GetMemberFunctionAtIndex()
4479 clang_type = GetType(cxx_method_decl->getType()); in GetMemberFunctionAtIndex()
4557 return TypeMemberFunctionImpl(clang_type, clang_decl, name, kind); in GetPointerType()
6037 // If a pointer to a pointee type (the clang_type arg) says that it has no in GetStaticFieldWithName()
6673 // "clang_type" on how to reach the appropriate member. in GetIndexForRecordChild()
6937 // Get the index of the child of "clang_type" whose name matches. This function in GetIndexOfChildMemberWithName()
7170 const clang::Type *clang_type in GetDirectNestedTypeWithName()
878 lldb::opaque_compiler_type_t clang_type = GetBasicType() local
4426 CompilerType clang_type; GetMemberFunctionAtIndex() local
7186 const clang::Type *clang_type = ClangUtil::GetQualType(ct).getTypePtr(); IsTemplateType() local
8507 const clang::Type *clang_type = enum_qual_type.getTypePtr(); AddEnumerationValueToEnumerationType() local
8551 const clang::Type *clang_type = qt.getTypePtrOrNull(); GetEnumerationIntegerType() local
8865 const clang::Type *clang_type = ClangUtil::GetQualType(ct).getTypePtr(); DumpTypeDescription() local
9053 CompilerType clang_type = GetTypeForDecl(decl); CompleteTagDecl() local
9063 CompilerType clang_type = GetTypeForDecl(decl); CompleteObjCInterfaceDecl() local
9432 CompilerType clang_type = GetTypeForDecl(nd); CountDeclLevels() local
[all...]