Home | History | Annotate | Download | only in optimizing

Lines Matching defs:method_index

118     current_inline_info_.method_index = method->GetDexMethodIndexUnchecked();
563 const uint32_t method_index = stack_map.dex_method_index;
564 if (method_index != DexFile::kDexNoIndex) {
565 stack_map.dex_method_index_idx = dedupe.emplace(method_index, index).first->second;
566 method_indices_[index] = method_index;
571 const uint32_t method_index = inline_info.method_index;
572 CHECK_NE(method_index, DexFile::kDexNoIndex);
573 inline_info.dex_method_index_idx = dedupe.emplace(method_index, index).first->second;
574 method_indices_[index] = method_index;
666 DCHECK_EQ(method_indices_[method_index_idx], inline_entry.method_index);