Home
last modified time | relevance | path

Searched refs:GetTypeSystem (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp33 if (auto type_system_sp = GetTypeSystem()) in IsAggregateType()
40 if (auto type_system_sp = GetTypeSystem()) in IsAnonymousType()
47 if (auto type_system_sp = GetTypeSystem()) in IsScopedEnumerationType()
55 if (auto type_system_sp = GetTypeSystem()) in IsArrayType()
71 if (auto type_system_sp = GetTypeSystem()) in IsVectorType()
78 if (auto type_system_sp = GetTypeSystem()) in IsRuntimeGeneratedType()
85 if (auto type_system_sp = GetTypeSystem()) in IsCharType()
92 if (auto type_system_sp = GetTypeSystem()) in IsCompleteType()
99 if (auto type_system_sp = GetTypeSystem()) in IsForcefullyCompleted()
106 if (auto type_system_sp = GetTypeSystem()) in IsConst()
[all …]
H A DCompilerDecl.cpp41 return lhs.GetTypeSystem() == rhs.GetTypeSystem() && in operator ==()
47 return lhs.GetTypeSystem() != rhs.GetTypeSystem() || in operator !=()
H A DCompilerDeclContext.cpp71 return lhs.GetTypeSystem() == rhs.GetTypeSystem() && in operator ==()
77 return lhs.GetTypeSystem() != rhs.GetTypeSystem() || in operator !=()
H A DDeclVendor.cpp25 decl.GetTypeSystem()->GetTypeForDecl(decl.GetOpaqueDecl())) in FindTypes()
H A DType.cpp829 auto ts = m_compiler_type.GetTypeSystem(); in GetExeModule()
1148 CompilerType::TypeSystemSPWrapper TypeImpl::GetTypeSystem(bool prefer_dynamic) { in GetTypeSystem() function in TypeImpl
1153 return m_dynamic_type.GetTypeSystem(); in GetTypeSystem()
1155 return m_static_type.GetTypeSystem(); in GetTypeSystem()
1179 auto type_system = GetTypeSystem(/*prefer_dynamic*/ false); in FindDirectNestedType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtil.cpp22 if (!ct.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>()) in IsClangType()
32 assert(llvm::isa<TypeSystemClang>(decl.GetTypeSystem())); in GetDecl()
57 return CompilerType(ct.GetTypeSystem(), qual_type.getAsOpaquePtr()); in RemoveFastQualifiers()
H A DClangASTImporter.cpp37 auto src_ast = src_type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in CopyType()
403 return CanImport(CompilerType(type.GetTypeSystem(), in CanImport()
410 return CanImport(CompilerType(type.GetTypeSystem(), in CanImport()
416 return CanImport(CompilerType(type.GetTypeSystem(), in CanImport()
423 type.GetTypeSystem(), in CanImport()
477 return Import(CompilerType(type.GetTypeSystem(), in Import()
484 return Import(CompilerType(type.GetTypeSystem(), in Import()
490 return Import(CompilerType(type.GetTypeSystem(), in Import()
497 type.GetTypeSystem(), in Import()
1015 TypeSystemClang &to_ts = to_source.GetTypeSystem(); in RemapModule()
[all …]
H A DNameSearchContext.cpp22 auto lldb_ast = type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in AddVarDecl()
48 auto lldb_ast = type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in AddFunDecl()
H A DClangExpressionDeclMap.cpp209 parser_type.GetTypeSystem().GetSharedPointer().get()); in DeportType()
221 auto ast = parser_type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in AddPersistentVariable()
659 frame_decl_context.GetTypeSystem()); in GetTypeSystemClang()
846 function_decl_ctx.GetTypeSystem()->weak_from_this()); in LookUpLldbClass()
936 function_decl_ctx.GetTypeSystem()->weak_from_this()); in LookUpLldbObjCClass()
996 frame_decl_context.GetTypeSystem()); in LookupLocalVarNamespace()
1151 frame_decl_context.GetTypeSystem()); in SearchFunctionsInSymbolContexts()
1493 auto ts = var_type->GetForwardCompilerType().GetTypeSystem(); in GetVariableValue()
1614 user_type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in AddOneVariable()
1823 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem(); in AddOneFunction()
H A DClangExternalASTSourceCallbacks.h49 TypeSystemClang &GetTypeSystem() const { return m_ast; } in GetTypeSystem() function
H A DIRForTarget.cpp282 m_decl_map->GetTypeSystem()->GetType(element_qual_type)); in CreateResultVariable()
288 m_decl_map->GetTypeSystem()->GetType(element_qual_type)); in CreateResultVariable()
300 m_decl_map->GetTypeSystem()->GetType(result_var->getType())); in CreateResultVariable()
888 m_decl_map->GetTypeSystem()->GetType(decl->getType())); in RewritePersistentAlloc()
1018 m_decl_map->GetTypeSystem()->GetType(value_decl->getType()); in MaybeHandleVariable()
H A DClangASTSource.h353 TypeSystemClang *GetTypeSystem() const { return m_clang_ast_context; } in GetTypeSystem() function
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDeclContext.h95 TypeSystem *GetTypeSystem() const { return m_type_system; } in GetTypeSystem() function
H A DCompilerDecl.h56 TypeSystem *GetTypeSystem() const { return m_type_system; } in GetTypeSystem() function
H A DCompilerType.h270 TypeSystemSPWrapper GetTypeSystem() const;
H A DType.h611 CompilerType::TypeSystemSPWrapper GetTypeSystem(bool prefer_dynamic);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCoreMedia.cpp28 auto type_system = type.GetTypeSystem(); in CMTimeSummaryProvider()
H A DNSIndexPath.cpp52 auto type_system = m_backend.GetCompilerType().GetTypeSystem(); in Update()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DBlockPointer.cpp52 auto ts = block_pointer_type.GetTypeSystem(); in BlockPointerSyntheticFrontEnd()
H A DCoroutines.cpp142 auto ts = valobj_sp->GetCompilerType().GetTypeSystem(); in Update()
H A DLibCxxMap.cpp290 auto ast_ctx = node_type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in GetValueOffset()
H A DLibCxx.cpp299 auto ts = pair_type.GetTypeSystem(); in Update()
467 auto ts = pair_type.GetTypeSystem(); in Update()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp1175 if (!ast || type1.GetTypeSystem() != type2.GetTypeSystem()) in AreTypesSame()
7264 auto ts = type.GetTypeSystem(); in AddFieldToRecordType()
7358 auto ts = type.GetTypeSystem(); in BuildIndirectFields()
7485 auto ts = type.GetTypeSystem(); in AddVariableToRecordType()
7793 auto ts = type.GetTypeSystem(); in SetObjCSuperClass()
7800 superclass_clang_type.GetTypeSystem() == type.GetTypeSystem()) { in SetObjCSuperClass()
7822 auto ts = type.GetTypeSystem(); in AddObjCClassProperty()
8042 auto ts = type.GetTypeSystem(); in AddMethodToObjCObjectType()
8246 auto ts = type.GetTypeSystem(); in CompleteTagDeclarationDefinition()
8398 type.GetTypeSystem() == pointee_type.GetTypeSystem()) { in CreateMemberPointerType()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp256 parent_type.GetTypeSystem().GetSharedPointer()); in Update()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1471 auto *type_system = decl_ctx.GetTypeSystem(); in ParseDeclsForContext()
1602 auto type_system = compiler_type.GetTypeSystem(); in HasForwardDeclForCompilerType()
1614 compiler_type.GetTypeSystem().dyn_cast_or_null<TypeSystemClang>(); in CompleteType()
2303 TypeSystem *decl_ctx_type_system = decl_ctx.GetTypeSystem(); in DeclContextMatchesThisSymbolFile()
2828 static_cast<const void *>(namespace_decl_ctx.GetTypeSystem()), in FindNamespace()
4351 SymbolFileDWARF::GetTypeSystem(DWARFUnit &unit) { in GetTypeSystem() function in SymbolFileDWARF
4356 auto type_system_or_err = GetTypeSystem(unit); in GetDWARFParser()

12