Searched refs:mid2 (Results 1 - 3 of 3) sorted by last modified time

/art/runtime/
H A Dart_method.cc112 const DexFile::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex()); local
113 return mid.name_idx_ == mid2.name_idx_ && mid.proto_idx_ == mid2.proto_idx_;
116 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); local
117 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
120 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
H A Djni_internal_test.cc910 jmethodID mid2 = env_->FromReflectedMethod(method); local
911 ASSERT_NE(mid2, nullptr);
915 env_->CallVoidMethod(s, mid2);
926 mid2 = env_->FromReflectedMethod(method);
927 ASSERT_NE(mid2, nullptr);
931 ASSERT_EQ(4, env_->CallIntMethod(s, mid2));
/art/test/004-JniTest/
H A Djni_test.cc572 jmethodID mid2 = env->GetMethodID(c, "<init>", "([B)V"); local
573 CHECK(mid2 != nullptr);
588 jstring s = reinterpret_cast<jstring>(env->NewObject(c, mid2, byte_array));
611 env->CallNonvirtualVoidMethod(s2, c, mid2, byte_array);
630 env->CallNonvirtualVoidMethod(s6, c, mid2, byte_array);

Completed in 76 milliseconds