jni_test.cc | 397 sub_(GetClass("JniCallNonvirtualTestSubclass")), 401 sub_constructor_(GetMethodID(sub_, true, "<init>")), 402 sub_static_(GetMethodID(sub_, false, "staticMethod")), 403 sub_nonstatic_(GetMethodID(sub_, true, "nonstaticMethod")), 419 jclass const sub_; member in class:art::JniCallNonvirtualVoidMethodTest 510 CallMethod(nullptr, sub_, super_static_, false, "null object, sub class, super static"); 517 CallMethod(nullptr, sub_, sub_static_, false, "null object, super class, sub static"); 527 jobject sub_super = CallConstructor(sub_, super_constructor_); 528 jobject sub_sub = CallConstructor(sub_, sub_constructor_); 531 CHECK(!env_->IsInstanceOf(super_super, sub_)); [all...] |