Searched refs:type_uid (Results 1 – 11 of 11) sorted by relevance
/external/lldb/include/lldb/Symbol/ |
D | SymbolFile.h | 130 virtual Type* ResolveTypeUID (lldb::user_id_t type_uid) = 0; 132 …ontextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) { return NULL; } in GetClangDeclContextForTypeUID() argument 133 …virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) { retu… in GetClangDeclContextContainingTypeUID() argument
|
D | SymbolVendor.h | 80 ResolveTypeUID(lldb::user_id_t type_uid);
|
/external/lldb/source/Symbol/ |
D | TypeList.cpp | 67 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()
|
D | Function.cpp | 200 lldb::user_id_t type_uid, in Function() argument 207 m_type_uid (type_uid), in Function() 224 lldb::user_id_t type_uid, in Function() argument 231 m_type_uid (type_uid), in Function()
|
D | SymbolVendor.cpp | 241 SymbolVendor::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument 248 return m_sym_file_ap->ResolveTypeUID(type_uid); in ResolveTypeUID()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDebugMap.h | 77 virtual lldb_private::Type* ResolveTypeUID (lldb::user_id_t type_uid); 78 virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid); 79 …t* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
|
D | SymbolFileDWARFDebugMap.cpp | 774 SymbolFileDWARFDebugMap::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument 776 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in ResolveTypeUID() 779 return oso_dwarf->ResolveTypeUID (type_uid); in ResolveTypeUID() 1446 SymbolFileDWARFDebugMap::GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) in GetClangDeclContextContainingTypeUID() argument 1448 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in GetClangDeclContextContainingTypeUID() 1451 return oso_dwarf->GetClangDeclContextContainingTypeUID (type_uid); in GetClangDeclContextContainingTypeUID() 1456 …ap::GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) in GetClangDeclContextForTypeUID() argument 1458 const uint64_t oso_idx = GetOSOIndexFromUserID (type_uid); in GetClangDeclContextForTypeUID() 1461 return oso_dwarf->GetClangDeclContextForTypeUID (sc, type_uid); in GetClangDeclContextForTypeUID()
|
D | SymbolFileDWARF.h | 109 virtual lldb_private::Type* ResolveTypeUID(lldb::user_id_t type_uid); 113 virtual clang::DeclContext* GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid); 114 …t* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
|
D | SymbolFileDWARF.cpp | 2240 SymbolFileDWARF::GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid) in GetClangDeclContextContainingTypeUID() argument 2243 if (debug_info && UserIDMatches(type_uid)) in GetClangDeclContextContainingTypeUID() 2246 const DWARFDebugInfoEntry* die = debug_info->GetDIEPtr(type_uid, &cu_sp); in GetClangDeclContextContainingTypeUID() 2254 …RF::GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) in GetClangDeclContextForTypeUID() argument 2256 if (UserIDMatches(type_uid)) in GetClangDeclContextForTypeUID() 2257 return GetClangDeclContextForDIEOffset (sc, type_uid); in GetClangDeclContextForTypeUID() 2262 SymbolFileDWARF::ResolveTypeUID (lldb::user_id_t type_uid) in ResolveTypeUID() argument 2264 if (UserIDMatches(type_uid)) in ResolveTypeUID() 2270 const DWARFDebugInfoEntry* type_die = debug_info->GetDIEPtr(type_uid, &cu_sp); in ResolveTypeUID() 7247 lldb::user_id_t type_uid = LLDB_INVALID_UID; in ParseVariableDIE() local [all …]
|
/external/lldb/source/Plugins/SymbolFile/Symtab/ |
D | SymbolFileSymtab.h | 79 ResolveTypeUID(lldb::user_id_t type_uid);
|
D | SymbolFileSymtab.cpp | 290 SymbolFileSymtab::ResolveTypeUID(lldb::user_id_t type_uid) in ResolveTypeUID() argument
|