Searched refs:method_idx_map (Results 1 – 1 of 1) sorted by relevance
238 std::map<const dex_ir::DebugInfoItem*, uint32_t> method_idx_map; in SortDebugInfosByMethodIndex() local253 method_idx_map.insert(std::make_pair(debug_item, method_id->GetIndex())); in SortDebugInfosByMethodIndex()262 auto it_a = method_idx_map.find(a.get()); in SortDebugInfosByMethodIndex()263 auto it_b = method_idx_map.find(b.get()); in SortDebugInfosByMethodIndex()264 uint32_t idx_a = it_a != method_idx_map.end() ? it_a->second : 0u; in SortDebugInfosByMethodIndex()265 uint32_t idx_b = it_b != method_idx_map.end() ? it_b->second : 0u; in SortDebugInfosByMethodIndex()