Home
last modified time | relevance | path

Searched refs:m_decls (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp19 m_decls.clear(); in Clear()
38 m_decls.push_back(abbrevDeclaration); in extract()
56 DWARFAbbreviationDeclarationCollConstIter end = m_decls.end(); in GetAbbreviationDeclaration()
57 for (pos = m_decls.begin(); pos != end; ++pos) { in GetAbbreviationDeclaration()
63 if (idx < m_decls.size()) in GetAbbreviationDeclaration()
64 return &m_decls[idx]; in GetAbbreviationDeclaration()
73 for (const auto &abbr_decl : m_decls) { in GetUnsupportedForms()
H A DDWARFDebugAbbrev.h29 DWARFAbbreviationDeclarationSet() : m_offset(DW_INVALID_OFFSET), m_decls() {} in DWARFAbbreviationDeclarationSet()
32 : m_offset(offset), m_idx_offset(idx_offset), m_decls() {} in DWARFAbbreviationDeclarationSet()
54 std::vector<DWARFAbbreviationDeclaration> m_decls; variable
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp34 m_decls.push_back(Decl); in AddVarDecl()
127 m_decls.push_back(func_decl); in AddFunDecl()
154 m_decls.push_back(typedef_name_decl); in AddTypeDecl()
160 m_decls.push_back(tag_decl); in AddTypeDecl()
167 m_decls.push_back((NamedDecl *)interface_decl); in AddTypeDecl()
177 m_decls.push_back(decl); in AddLookupResult()
181 m_decls.push_back(decl); in AddNamedDecl()
H A DNameSearchContext.h30 llvm::SmallVectorImpl<clang::NamedDecl *> &m_decls; member
67 : m_clang_ts(clang_ts), m_decls(decls), in NameSearchContext()
H A DASTResultSynthesizer.cpp442 m_decls.push_back(D); in MaybeRecordPersistentType()
462 m_decls.push_back(D); in RecordPersistentDecl()
476 for (clang::NamedDecl *decl : m_decls) { in CommitPersistentDecls()
H A DASTResultSynthesizer.h161 std::vector<clang::NamedDecl *> m_decls; ///< Persistent declarations to variable
H A DClangASTSource.cpp1719 context.m_decls.push_back(copied_namespace_decl); in AddNamespace()