Searched defs:mid2 (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dart_method.cc101 const DexFile::MethodId& mid2 = dex_file->GetMethodId(method2->GetDexMethodIndex()); local
102 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
105 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(method2->GetDexMethodIndex()); local
106 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
109 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
H A Djni_internal_test.cc855 jmethodID mid2 = env_->FromReflectedMethod(method); local
856 ASSERT_NE(mid2, nullptr);
860 env_->CallVoidMethod(s, mid2);
871 mid2 = env_->FromReflectedMethod(method);
872 ASSERT_NE(mid2, nullptr);
876 ASSERT_EQ(4, env_->CallIntMethod(s, mid2));

Completed in 106 milliseconds