Home
last modified time | relevance | path

Searched refs:type_uid (Results 1 – 11 of 11) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDSymbolFile.h131 virtual Type* ResolveTypeUID (lldb::user_id_t type_uid) = 0;
133 …ontextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) { return NULL; } in GetClangDeclContextForTypeUID() argument
134 …virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) { retu… in GetClangDeclContextContainingTypeUID() argument
HDSymbolVendor.h84 ResolveTypeUID(lldb::user_id_t type_uid);
/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDTypeList.cpp67 user_id_t type_uid = type_sp->GetID(); in InsertUnique() local
70 for (pos = m_types.find(type_uid); pos != end && pos->second->GetID() == type_uid; ++pos) in InsertUnique()
HDFunction.cpp208 lldb::user_id_t type_uid, in Function() argument
215 m_type_uid (type_uid), in Function()
232 lldb::user_id_t type_uid, in Function() argument
239 m_type_uid (type_uid), in Function()
HDSymbolVendor.cpp256 SymbolVendor::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument
263 return m_sym_file_ap->ResolveTypeUID(type_uid); in ResolveTypeUID()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARFDebugMap.cpp780 SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument
782 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in ResolveTypeUID()
785 return oso_dwarf->ResolveTypeUID (type_uid); in ResolveTypeUID()
1485 SymbolFileDWARFDebugMap::GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) in GetClangDeclContextContainingTypeUID() argument
1487 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in GetClangDeclContextContainingTypeUID()
1490 return oso_dwarf->GetClangDeclContextContainingTypeUID (type_uid); in GetClangDeclContextContainingTypeUID()
1495 …ap::GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) in GetClangDeclContextForTypeUID() argument
1497 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in GetClangDeclContextForTypeUID()
1500 return oso_dwarf->GetClangDeclContextForTypeUID (sc, type_uid); in GetClangDeclContextForTypeUID()
HDSymbolFileDWARFDebugMap.h78 lldb_private::Type* ResolveTypeUID (lldb::user_id_t type_uid) override;
79 clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) override;
80 …ngDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) override;
HDSymbolFileDWARF.h111 virtual lldb_private::Type* ResolveTypeUID(lldb::user_id_t type_uid);
115 virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid);
116 …t* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
HDSymbolFileDWARF.cpp2384 SymbolFileDWARF::GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) in GetClangDeclContextContainingTypeUID() argument
2387 if (debug_info && UserIDMatches(type_uid)) in GetClangDeclContextContainingTypeUID()
2390 const DWARFDebugInfoEntry* die = debug_info->GetDIEPtr(type_uid, &cu_sp); in GetClangDeclContextContainingTypeUID()
2398 …RF::GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) in GetClangDeclContextForTypeUID() argument
2400 if (UserIDMatches(type_uid)) in GetClangDeclContextForTypeUID()
2401 return GetClangDeclContextForDIEOffset (sc, type_uid); in GetClangDeclContextForTypeUID()
2406 SymbolFileDWARF::ResolveTypeUID (lldb::user_id_t type_uid) in ResolveTypeUID() argument
2408 if (UserIDMatches(type_uid)) in ResolveTypeUID()
2414 const DWARFDebugInfoEntry* type_die = debug_info->GetDIEPtr(type_uid, &cu_sp); in ResolveTypeUID()
7410 lldb::user_id_t type_uid = LLDB_INVALID_UID; in ParseVariableDIE() local
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
HDSymbolFileSymtab.h82 ResolveTypeUID(lldb::user_id_t type_uid);
HDSymbolFileSymtab.cpp296 SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument