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.h251 CompilerType GetTypeForDecl(clang::NamedDecl *decl);
253 CompilerType GetTypeForDecl(clang::TagDecl *decl);
255 CompilerType GetTypeForDecl(clang::ObjCInterfaceDecl *objc_decl);
257 CompilerType GetTypeForDecl(clang::ValueDecl *value_decl);
571 CompilerType GetTypeForDecl(void *opaque_decl) override;
H A DTypeSystemClang.cpp1134 CompilerType TypeSystemClang::GetTypeForDecl(void *opaque_decl) { in GetTypeForDecl() function in TypeSystemClang
1140 return GetTypeForDecl(named_decl); in GetTypeForDecl()
1150 CompilerType TypeSystemClang::GetTypeForDecl(clang::NamedDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1153 return GetTypeForDecl(interface_decl); in GetTypeForDecl()
1155 return GetTypeForDecl(tag_decl); in GetTypeForDecl()
1157 return GetTypeForDecl(value_decl); in GetTypeForDecl()
1161 CompilerType TypeSystemClang::GetTypeForDecl(TagDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1165 CompilerType TypeSystemClang::GetTypeForDecl(ObjCInterfaceDecl *decl) { in GetTypeForDecl() function in TypeSystemClang
1169 CompilerType TypeSystemClang::GetTypeForDecl(clang::ValueDecl *value_decl) { in GetTypeForDecl() function in TypeSystemClang
9053 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.cpp260 CompilerType type = ast.GetTypeForDecl(tag_decl_ctx); in PrepareContextToReceiveMembers()