Home | History | Annotate | Download | only in quick

Lines Matching refs:dex_pcs

624   std::vector<uint32_t> dex_pcs;
625 dex_pcs.reserve(table.DexToPcSize());
627 dex_pcs.push_back(it.DexPc());
629 // Sort dex_pcs, so that we can quickly check it against the ordered mir_graph_->catches_.
630 std::sort(dex_pcs.begin(), dex_pcs.end());
633 auto it = dex_pcs.begin(), end = dex_pcs.end();