Home
last modified time | relevance | path

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

/art/dexlayout/
Dcompact_dex_writer.cc238 std::map<const dex_ir::DebugInfoItem*, uint32_t> method_idx_map; in SortDebugInfosByMethodIndex() local
253 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()