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