Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp430 m_uid_to_decl[type.getSymIndexId()] = record_decl; in CreateLLDBTypeFromPDBType()
515 m_uid_to_decl[type.getSymIndexId()] = enum_decl; in CreateLLDBTypeFromPDBType()
839 auto it = m_uid_to_decl.find(sym_id); in GetDeclForSymbol()
840 if (it != m_uid_to_decl.end()) in GetDeclForSymbol()
897 m_uid_to_decl[sym_id] = decl; in GetDeclForSymbol()
937 m_uid_to_decl[sym_id] = decl; in GetDeclForSymbol()
983 m_uid_to_decl[sym_id] = decl; in GetDeclForSymbol()
993 return m_uid_to_decl.lookup(sym_id); in GetDeclForSymbol()
1283 m_uid_to_decl[member->getSymIndexId()] = decl; in AddRecordMembers()
1345 m_uid_to_decl[member->getSymIndexId()] = decl; in AddRecordMembers()
[all …]
H A DPDBASTParser.h110 UidToDeclMap m_uid_to_decl; variable
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp302 m_uid_to_decl[toOpaqueUid(uid)] = result; in GetOrCreateDeclForUid()
636 auto iter = m_uid_to_decl.find(toOpaqueUid(uid)); in TryGetDecl()
637 if (iter != m_uid_to_decl.end()) in TryGetDecl()
659 m_uid_to_decl.insert({toOpaqueUid(block_id), block_decl}); in GetOrCreateBlockDecl()
679 m_uid_to_decl[toOpaqueUid(uid)] = var_decl; in CreateVariableDecl()
954 lldbassert(m_uid_to_decl.count(func_uid) == 0); in GetOrCreateInlinedFunctionDecl()
955 m_uid_to_decl[func_uid] = function_decl; in GetOrCreateInlinedFunctionDecl()
1056 lldbassert(m_uid_to_decl.count(toOpaqueUid(func_id)) == 0); in GetOrCreateFunctionDecl()
1057 m_uid_to_decl[toOpaqueUid(func_id)] = function_decl; in GetOrCreateFunctionDecl()
1130 lldbassert(m_uid_to_decl.count(toOpaqueUid(param_uid)) == 0); in CreateFunctionParameters()
[all …]
H A DPdbAstBuilder.h145 llvm::DenseMap<lldb::user_id_t, clang::Decl *> m_uid_to_decl; variable