Lines Matching refs:super_

385         super_(GetClass("JniCallNonvirtualTest")),  in JniCallNonvirtualVoidMethodTest()
387 super_constructor_(GetMethodID(super_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
388 super_static_(GetMethodID(super_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
389 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
393 super_field_(GetFieldID(super_, "nonstaticMethodSuperCalled")), in JniCallNonvirtualVoidMethodTest()
394 sub_field_(GetFieldID(super_, "nonstaticMethodSubCalled")) {} in JniCallNonvirtualVoidMethodTest()
407 jclass const super_; member in art::JniCallNonvirtualVoidMethodTest
496 CallMethod(nullptr, super_, super_static_, false, "null object, super class, super static"); in TestStaticCallNonvirtualMethod()
509 CallMethod(nullptr, super_, sub_static_, false, "null object, super class, sub static"); in TestStaticCallNonvirtualMethod()
514 jobject super_super = CallConstructor(super_, super_constructor_); in TestNewObject()
515 jobject super_sub = CallConstructor(super_, sub_constructor_); in TestNewObject()
519 CHECK(env_->IsInstanceOf(super_super, super_)); in TestNewObject()
524 CHECK(env_->IsInstanceOf(super_sub, super_)); in TestNewObject()
529 CHECK(env_->IsInstanceOf(sub_super, super_)); in TestNewObject()
532 CHECK(env_->IsInstanceOf(sub_sub, super_)); in TestNewObject()
546 CallConstructor(super_, super_constructor_) : in TestnonstaticCallNonvirtualMethod()
548 jclass c = (super_class) ? super_ : sub_; in TestnonstaticCallNonvirtualMethod()