Lines Matching refs:super_

396         super_(GetClass("JniCallNonvirtualTest")),  in JniCallNonvirtualVoidMethodTest()
398 super_constructor_(GetMethodID(super_, true, "<init>")), in JniCallNonvirtualVoidMethodTest()
399 super_static_(GetMethodID(super_, false, "staticMethod")), in JniCallNonvirtualVoidMethodTest()
400 super_nonstatic_(GetMethodID(super_, true, "nonstaticMethod")), in JniCallNonvirtualVoidMethodTest()
404 super_field_(GetFieldID(super_, "nonstaticMethodSuperCalled")), in JniCallNonvirtualVoidMethodTest()
405 sub_field_(GetFieldID(super_, "nonstaticMethodSubCalled")) {} in JniCallNonvirtualVoidMethodTest()
418 jclass const super_; member in art::JniCallNonvirtualVoidMethodTest
507 CallMethod(nullptr, super_, super_static_, false, "null object, super class, super static"); in TestStaticCallNonvirtualMethod()
520 CallMethod(nullptr, super_, sub_static_, false, "null object, super class, sub static"); in TestStaticCallNonvirtualMethod()
525 jobject super_super = CallConstructor(super_, super_constructor_); in TestNewObject()
526 jobject super_sub = CallConstructor(super_, sub_constructor_); in TestNewObject()
530 CHECK(env_->IsInstanceOf(super_super, super_)); in TestNewObject()
535 CHECK(env_->IsInstanceOf(super_sub, super_)); in TestNewObject()
540 CHECK(env_->IsInstanceOf(sub_super, super_)); in TestNewObject()
543 CHECK(env_->IsInstanceOf(sub_sub, super_)); in TestNewObject()
557 CallConstructor(super_, super_constructor_) : in TestnonstaticCallNonvirtualMethod()
559 jclass c = (super_class) ? super_ : sub_; in TestnonstaticCallNonvirtualMethod()