Home
last modified time | relevance | path

Searched refs:GetTypeForDecl (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp25 decl.GetTypeSystem()->GetTypeForDecl(decl.GetOpaqueDecl())) in FindTypes()
H A DCompilerDecl.cpp29 return m_type_system->GetTypeForDecl(m_opaque_decl); in GetType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h253 CompilerType GetTypeForDecl(clang::NamedDecl *decl);
255 CompilerType GetTypeForDecl(clang::TagDecl *decl);
257 CompilerType GetTypeForDecl(clang::ObjCInterfaceDecl *objc_decl);
259 CompilerType GetTypeForDecl(clang::ValueDecl *value_decl);
570 CompilerType GetTypeForDecl(void *opaque_decl) override;
H A DTypeSystemClang.cpp1157 CompilerType TypeSystemClang::GetTypeForDecl(void *opaque_decl) { in GetTypeForDecl() function in TypeSystemClang
1163 return GetTypeForDecl(named_decl); in GetTypeForDecl()
1173 CompilerType TypeSystemClang::GetTypeForDecl(clang::NamedDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1176 return GetTypeForDecl(interface_decl); in GetTypeForDecl()
1178 return GetTypeForDecl(tag_decl); in GetTypeForDecl()
1180 return GetTypeForDecl(value_decl); in GetTypeForDecl()
1184 CompilerType TypeSystemClang::GetTypeForDecl(TagDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1188 CompilerType TypeSystemClang::GetTypeForDecl(ObjCInterfaceDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1192 CompilerType TypeSystemClang::GetTypeForDecl(clang::ValueDecl *value_decl) { in GetTypeForDecl() function in TypeSystemClang
8975 CompilerType clang_type = GetTypeForDecl(decl); in CompleteTagDecl()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeSystem.h117 virtual CompilerType GetTypeForDecl(void *opaque_decl) = 0;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp354 CompilerType type = ast.GetTypeForDecl(tag_decl_ctx); in PrepareContextToReceiveMembers()