Home
last modified time | relevance | path

Searched refs:opaque_decl (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/source/Symbol/
H A DTypeSystem.cpp151 ConstString TypeSystem::DeclGetMangledName(void *opaque_decl) { in DeclGetMangledName() argument
155 CompilerDeclContext TypeSystem::DeclGetDeclContext(void *opaque_decl) { in DeclGetDeclContext() argument
159 CompilerType TypeSystem::DeclGetFunctionReturnType(void *opaque_decl) { in DeclGetFunctionReturnType() argument
163 size_t TypeSystem::DeclGetFunctionNumArguments(void *opaque_decl) { return 0; } in DeclGetFunctionNumArguments() argument
165 CompilerType TypeSystem::DeclGetFunctionArgumentType(void *opaque_decl, in DeclGetFunctionArgumentType() argument
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DTypeSystem.h97 virtual ConstString DeclGetName(void *opaque_decl) = 0;
99 virtual ConstString DeclGetMangledName(void *opaque_decl);
101 virtual CompilerDeclContext DeclGetDeclContext(void *opaque_decl);
103 virtual CompilerType DeclGetFunctionReturnType(void *opaque_decl);
105 virtual size_t DeclGetFunctionNumArguments(void *opaque_decl);
107 virtual CompilerType DeclGetFunctionArgumentType(void *opaque_decl,
110 virtual CompilerType GetTypeForDecl(void *opaque_decl) = 0;
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h469 ConstString DeclGetName(void *opaque_decl) override;
471 ConstString DeclGetMangledName(void *opaque_decl) override;
473 CompilerDeclContext DeclGetDeclContext(void *opaque_decl) override;
475 CompilerType DeclGetFunctionReturnType(void *opaque_decl) override;
477 size_t DeclGetFunctionNumArguments(void *opaque_decl) override;
479 CompilerType DeclGetFunctionArgumentType(void *opaque_decl,
482 CompilerType GetTypeForDecl(void *opaque_decl) override;
H A DTypeSystemClang.cpp1190 CompilerType TypeSystemClang::GetTypeForDecl(void *opaque_decl) { in GetTypeForDecl() argument
1191 if (!opaque_decl) in GetTypeForDecl()
1194 clang::Decl *decl = static_cast<clang::Decl *>(opaque_decl); in GetTypeForDecl()
9387 ConstString TypeSystemClang::DeclGetName(void *opaque_decl) { in DeclGetName() argument
9388 if (opaque_decl) { in DeclGetName()
9390 llvm::dyn_cast<NamedDecl>((clang::Decl *)opaque_decl); in DeclGetName()
9397 ConstString TypeSystemClang::DeclGetMangledName(void *opaque_decl) { in DeclGetMangledName() argument
9398 if (opaque_decl) { in DeclGetMangledName()
9400 llvm::dyn_cast<clang::NamedDecl>((clang::Decl *)opaque_decl); in DeclGetMangledName()
9428 if (opaque_decl) in DeclGetDeclContext()
[all …]