Home
last modified time | relevance | path

Searched refs:CompilerDecl (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerDecl.cpp15 ConstString CompilerDecl::GetName() const { in GetName()
19 ConstString CompilerDecl::GetMangledName() const { in GetMangledName()
23 CompilerDeclContext CompilerDecl::GetDeclContext() const { in GetDeclContext()
27 CompilerType CompilerDecl::GetFunctionReturnType() const { in GetFunctionReturnType()
31 size_t CompilerDecl::GetNumFunctionArguments() const { in GetNumFunctionArguments()
35 CompilerType CompilerDecl::GetFunctionArgumentType(size_t arg_idx) const { in GetFunctionArgumentType()
39 bool lldb_private::operator==(const lldb_private::CompilerDecl &lhs, in operator ==()
40 const lldb_private::CompilerDecl &rhs) { in operator ==()
45 bool lldb_private::operator!=(const lldb_private::CompilerDecl &lhs, in operator !=()
46 const lldb_private::CompilerDecl &rhs) { in operator !=()
H A DCompilerDeclContext.cpp16 std::vector<CompilerDecl>
22 return std::vector<CompilerDecl>(); in FindDeclByName()
H A DDeclVendor.cpp23 std::vector<CompilerDecl> decls; in FindTypes()
H A DTypeSystem.cpp168 std::vector<CompilerDecl>
171 return std::vector<CompilerDecl>(); in DeclContextFindDeclByName()
H A DVariable.cpp211 CompilerDecl Variable::GetDecl() { in GetDecl()
213 return type ? type->GetSymbolFile()->GetDeclForUID(GetID()) : CompilerDecl(); in GetDecl()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDecl.h28 class CompilerDecl {
31 CompilerDecl() = default;
37 CompilerDecl(TypeSystem *type_system, void *decl) in CompilerDecl() function
44 bool operator<(const CompilerDecl &rhs) const {
92 bool operator==(const CompilerDecl &lhs, const CompilerDecl &rhs);
93 bool operator!=(const CompilerDecl &lhs, const CompilerDecl &rhs);
H A DDeclVendor.h53 std::vector<CompilerDecl> &decls) = 0;
H A DCompilerDeclContext.h59 std::vector<CompilerDecl> FindDeclByName(ConstString name,
H A DSymbolFile.h201 virtual CompilerDecl GetDeclForUID(lldb::user_id_t uid) { in GetDeclForUID()
202 return CompilerDecl(); in GetDeclForUID()
H A DVariable.h109 CompilerDecl GetDecl();
H A DType.h439 TypeMemberFunctionImpl(const CompilerType &type, const CompilerDecl &decl, in TypeMemberFunctionImpl()
467 CompilerDecl m_decl;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.cpp23 std::vector<CompilerDecl> compiler_decls; in FindDecls()
25 for (CompilerDecl compiler_decl : compiler_decls) { in FindDecls()
H A DClangUtil.h29 static clang::Decl *GetDecl(const CompilerDecl &decl);
H A DClangUtil.cpp31 clang::Decl *ClangUtil::GetDecl(const CompilerDecl &decl) { in GetDecl()
H A DClangModulesDeclVendor.cpp96 std::vector<CompilerDecl> &decls) override;
384 std::vector<CompilerDecl> &decls) { in FindDecls()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h58 llvm::Optional<lldb_private::CompilerDecl>
77 CompilerDecl ToCompilerDecl(clang::Decl &decl);
80 clang::Decl *FromCompilerDecl(CompilerDecl decl);
H A DSymbolFileNativePDB.h111 CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
H A DPdbAstBuilder.cpp461 llvm::Optional<CompilerDecl> PdbAstBuilder::GetOrCreateDeclForUid(PdbSymUid uid) { in GetOrCreateDeclForUid()
1339 CompilerDecl PdbAstBuilder::ToCompilerDecl(clang::Decl &decl) { in ToCompilerDecl()
1352 clang::Decl * PdbAstBuilder::FromCompilerDecl(CompilerDecl decl) { in FromCompilerDecl()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.h31 std::vector<CompilerDecl> &decls) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParser.h41 virtual lldb_private::CompilerDecl
H A DSymbolFileDWARF.h149 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
308 static lldb_private::CompilerDecl GetDecl(const DWARFDIE &die);
H A DDWARFASTParserClang.h56 lldb_private::CompilerDecl
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp615 lldb_private::CompilerDecl SymbolFilePDB::GetDeclForUID(lldb::user_id_t uid) { in GetDeclForUID()
621 return CompilerDecl(); in GetDeclForUID()
627 return CompilerDecl(); in GetDeclForUID()
631 return CompilerDecl(); in GetDeclForUID()
635 return CompilerDecl(); in GetDeclForUID()
639 return CompilerDecl(); in GetDeclForUID()
H A DSymbolFilePDB.h92 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h470 CompilerDecl GetCompilerDecl(clang::Decl *decl) { in GetCompilerDecl()
473 return CompilerDecl(this, decl); in GetCompilerDecl()
504 std::vector<CompilerDecl>

12