Home
last modified time | relevance | path

Searched refs:DeclVendor (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDeclVendor.h20 class DeclVendor {
29 DeclVendor(DeclVendorKind kind) : m_kind(kind) {} in DeclVendor() function
31 virtual ~DeclVendor() = default;
70 DeclVendor(const DeclVendor &) = delete;
71 const DeclVendor &operator=(const DeclVendor &) = delete;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangDeclVendor.h21 class ClangDeclVendor : public DeclVendor {
23 ClangDeclVendor(DeclVendorKind kind) : DeclVendor(kind) {} in ClangDeclVendor()
27 using DeclVendor::FindDecls;
32 static bool classof(const DeclVendor *vendor) { in classof()
H A DClangModulesDeclVendor.h29 static bool classof(const DeclVendor *vendor) { in classof()
H A DClangASTSource.cpp844 DeclVendor *decl_vendor = language_runtime->GetDeclVendor(); in FindDeclInObjCRuntime()
1115 DeclVendor *decl_vendor = language_runtime->GetDeclVendor(); in FindObjCMethodDecls()
1292 DeclVendor *decl_vendor = language_runtime->GetDeclVendor(); in FindObjCPropertyAndIvarDecls()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.h118 DeclVendor *GetDeclVendor() override;
152 std::unique_ptr<DeclVendor> m_decl_vendor_up;
H A DAppleObjCDeclVendor.h26 static bool classof(const DeclVendor *vendor) { in classof()
H A DAppleObjCRuntimeV2.h77 DeclVendor *GetDeclVendor() override;
461 std::unique_ptr<DeclVendor> m_decl_vendor_up;
H A DAppleObjCRuntimeV1.cpp429 DeclVendor *AppleObjCRuntimeV1::GetDeclVendor() { in GetDeclVendor()
H A DAppleObjCTypeEncodingParser.cpp233 DeclVendor *decl_vendor = m_runtime.GetDeclVendor(); in BuildObjCObjectPointerType()
H A DAppleObjCRuntimeV2.cpp2692 DeclVendor *AppleObjCRuntimeV2::GetDeclVendor() { in GetDeclVendor()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDeclVendor.cpp18 std::vector<CompilerType> DeclVendor::FindTypes(ConstString name, in FindTypes()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h163 virtual DeclVendor *GetDeclVendor() { return nullptr; } in GetDeclVendor()
/freebsd/lib/clang/liblldb/
H A DMakefile601 SRCS+= Symbol/DeclVendor.cpp