HomeSort by relevance Sort by last modified time
    Searched refs:GetMethodId (Results 1 - 25 of 51) sorted by null

1 2 3

  /art/compiler/driver/
dex_compilation_unit.h 72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
compiler_driver-inl.h 57 mUnit->GetDexFile()->GetMethodId(mUnit->GetDexMethodIndex());
compiler_driver_test.cc 64 mid_ = env_->GetMethodID(class_, method, signature);
133 << " " << dex.GetMethodDeclaringClassDescriptor(dex.GetMethodId(i))
134 << " " << dex.GetMethodName(dex.GetMethodId(i));
136 << " " << dex.GetMethodDeclaringClassDescriptor(dex.GetMethodId(i)) << " "
137 << dex.GetMethodName(dex.GetMethodId(i));
166 jmethodID constructor = env_->GetMethodID(c_class, "<init>", "()V");
  /external/webrtc/webrtc/modules/audio_device/android/
audio_record_jni.cc 36 init_recording_(native_reg->GetMethodId("initRecording", "(II)I")),
37 start_recording_(native_reg->GetMethodId("startRecording", "()Z")),
38 stop_recording_(native_reg->GetMethodId("stopRecording", "()Z")),
39 enable_built_in_aec_(native_reg->GetMethodId("enableBuiltInAEC", "(Z)Z")),
40 enable_built_in_agc_(native_reg->GetMethodId("enableBuiltInAGC", "(Z)Z")),
41 enable_built_in_ns_(native_reg->GetMethodId("enableBuiltInNS", "(Z)Z")) {}
audio_track_jni.cc 36 init_playout_(native_reg->GetMethodId("initPlayout", "(II)V")),
37 start_playout_(native_reg->GetMethodId("startPlayout", "()Z")),
38 stop_playout_(native_reg->GetMethodId("stopPlayout", "()Z")),
39 set_stream_volume_(native_reg->GetMethodId("setStreamVolume", "(I)Z")),
41 native_reg->GetMethodId("getStreamMaxVolume", "()I")),
42 get_stream_volume_(native_reg->GetMethodId("getStreamVolume", "()I")) {}
audio_manager.cc 37 init_(native_reg->GetMethodId("init", "()Z")),
38 dispose_(native_reg->GetMethodId("dispose", "()V")),
40 native_reg->GetMethodId("isCommunicationModeEnabled", "()Z")),
42 native_reg->GetMethodId("isDeviceBlacklistedForOpenSLESUsage",
  /art/runtime/
method_reference.h 61 const DexFile::MethodId& mid1 = mr1.dex_file->GetMethodId(mr1.dex_method_index);
62 const DexFile::MethodId& mid2 = mr2.dex_file->GetMethodId(mr2.dex_method_index);
art_method-inl.h 242 return dex_file->GetMethodDeclaringClassDescriptor(dex_file->GetMethodId(dex_method_idx));
253 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length);
261 return dex_file->GetMethodSignature(dex_file->GetMethodId(dex_method_idx));
271 return dex_file->GetMethodName(dex_file->GetMethodId(dex_method_idx));
311 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex()));
318 dex_file->GetMethodId(GetDexMethodIndex()));
344 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
409 const DexFile::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex());
imtable-inl.h 49 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex());
art_method.cc 132 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_;
144 const DexFile::MethodId& method_id = dex_file->GetMethodId(dex_method_idx);
191 const DexFile::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex());
193 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex());
197 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
244 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx);
245 const DexFile::MethodId& name_and_sig_mid = other_dexfile.GetMethodId(name_and_signature_idx);
562 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex());
    [all...]
dex_file_verifier_test.cc 158 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
168 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
178 DexFile::MethodId* method_id = const_cast<DexFile::MethodId*>(&dex_file->GetMethodId(0));
250 dex::StringIndex name_index = dex_file->GetMethodId(method_index).name_idx_;
    [all...]
class_linker-inl.h 151 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
166 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
dex_file-inl.h 108 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_);
dex_file_test.cc 419 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
430 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
441 const DexFile::MethodId& method_id = raw->GetMethodId(it.GetMemberIndex());
499 const DexFile::MethodId& to_find = java_lang_dex_file_->GetMethodId(i);
dex_file_tracking_registrar.cc 225 const DexFile::MethodId& methodid_item = dex_file_->GetMethodId(cdit.GetMemberIndex());
  /art/dexlayout/
dex_verify.cc 379 if (orig_method->GetMethodId()->GetIndex() != output_method->GetMethodId()->GetIndex()) {
383 orig_method->GetMethodId()->GetIndex(),
384 output_method->GetMethodId()->GetIndex());
420 if (orig_param->GetMethodId()->GetIndex() != output_param->GetMethodId()->GetIndex()) {
424 orig_param->GetMethodId()->GetIndex(),
425 output_param->GetMethodId()->GetIndex());
661 if (orig->GetMethodId()->GetIndex() != output->GetMethodId()->GetIndex())
    [all...]
dex_ir.cc 158 method_ids->push_back(collections.GetMethodId(index));
287 item->SetMethodId(GetMethodId(method_index));
358 const DexFile::MethodId& disk_method_id = dex_file.GetMethodId(i);
509 MethodId* method_id = GetMethodId(methods[i].method_idx_);
525 MethodId* method_id = GetMethodId(parameters[i].method_idx_);
693 MethodId* method_id = GetMethodId(cdii.GetMemberIndex());
    [all...]
dex_visualize.cc 176 uint32_t method_idx = method->GetMethodId()->GetIndex();
185 DumpMethodId(method->GetMethodId(), class_index);
dexlayout.cc 434 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index);
467 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index);
561 dex_ir::MethodId* method_id = data->GetMethodId();
752 const dex_ir::MethodId* method_id = method->GetMethodId();
763 const dex_ir::MethodId* method_id = parameter->GetMethodId();
    [all...]
dex_writer.cc 171 length = EncodeUIntValue(encoded_value->GetMethodId()->GetIndex(), buffer);
235 uint32_t index = method->GetMethodId()->GetIndex();
390 annotation_buffer[0] = method->GetMethodId()->GetIndex();
398 annotation_buffer[0] = parameter->GetMethodId()->GetIndex();
  /external/webrtc/webrtc/modules/utility/include/
jvm_android.h 56 // Wraps the jclass object on which we can call GetMethodId() functions to
63 jmethodID GetMethodId(const char* name, const char* signature);
138 // jmethodID id = reg->GetMethodId("init", "()Z");
  /art/runtime/mirror/
dex_cache_test.cc 149 const DexFile::MethodId& method1_id = dex_file.GetMethodId(method1->GetDexMethodIndex());
150 const DexFile::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex());
  /art/profman/
boot_image_profile.cc 64 dex_file->GetMethodId(ref.dex_method_index).class_idx_);
  /art/dexdump/
dexdump.cc 499 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(method_idx);
691 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(method_idx);
702 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(method_idx);
854 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(index);
887 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(index);
    [all...]
  /art/dexlist/
dexlist.cc 102 const DexFile::MethodId& pMethodId = pDexFile->GetMethodId(idx);

Completed in 497 milliseconds

1 2 3