Home | History | Annotate | Download | only in DWARF

Lines Matching defs:type_uid

2240 SymbolFileDWARF::GetClangDeclContextContainingTypeUID (lldb::user_id_t type_uid)
2243 if (debug_info && UserIDMatches(type_uid))
2246 const DWARFDebugInfoEntry* die = debug_info->GetDIEPtr(type_uid, &cu_sp);
2254 SymbolFileDWARF::GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid)
2256 if (UserIDMatches(type_uid))
2257 return GetClangDeclContextForDIEOffset (sc, type_uid);
2262 SymbolFileDWARF::ResolveTypeUID (lldb::user_id_t type_uid)
2264 if (UserIDMatches(type_uid))
2270 const DWARFDebugInfoEntry* type_die = debug_info->GetDIEPtr(type_uid, &cu_sp);
7247 lldb::user_id_t type_uid = LLDB_INVALID_UID;
7269 case DW_AT_type: type_uid = form_value.Reference(dwarf_cu); break;
7506 SymbolFileTypeSP (new SymbolFileType(*this, type_uid)),