Lines Matching refs:super_
425 super_(GetClass("JniCallNonvirtualTest")), in JniCallNonvirtualVoidMethodTest()
427 super_constructor_(GetMethodID(super_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
428 super_static_(GetMethodID(super_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
429 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
433 super_field_(GetFieldID(super_, "nonstaticMethodSuperCalled")), in JniCallNonvirtualVoidMethodTest()
434 sub_field_(GetFieldID(super_, "nonstaticMethodSubCalled")) {} in JniCallNonvirtualVoidMethodTest()
447 jclass const super_; member in art::JniCallNonvirtualVoidMethodTest
536 CallMethod(nullptr, super_, super_static_, false, "null object, super class, super static"); in TestStaticCallNonvirtualMethod()
549 CallMethod(nullptr, super_, sub_static_, false, "null object, super class, sub static"); in TestStaticCallNonvirtualMethod()
554 jobject super_super = CallConstructor(super_, super_constructor_); in TestNewObject()
555 jobject super_sub = CallConstructor(super_, sub_constructor_); in TestNewObject()
559 CHECK(env_->IsInstanceOf(super_super, super_)); in TestNewObject()
564 CHECK(env_->IsInstanceOf(super_sub, super_)); in TestNewObject()
569 CHECK(env_->IsInstanceOf(sub_super, super_)); in TestNewObject()
572 CHECK(env_->IsInstanceOf(sub_sub, super_)); in TestNewObject()
586 CallConstructor(super_, super_constructor_) : in TestnonstaticCallNonvirtualMethod()
588 jclass c = (super_class) ? super_ : sub_; in TestnonstaticCallNonvirtualMethod()