Searched defs:super (Results 1 - 4 of 4) sorted by path

/art/oatdump/
H A Doatdump.cc1611 mirror::Class* super = klass->GetSuperClass(); local
1612 if (super != nullptr) {
1613 DumpFields(os, obj, super);
/art/runtime/
H A Dclass_linker.cc397 // backfill Object as the super class of Class.
3882 // Verify super class.
3891 // Verify all default super-interfaces.
3966 // Even though there were no verifier failures we need to respect whether the super-class and
3967 // super-default-interfaces were verified or requiring runtime reverification.
4235 // The super class is java.lang.reflect.Proxy
4569 // Initialize super classes, must be done while initializing for the JLS.
4579 // The super class was verified ahead of entering initializing, we should only be here if
4580 // the super class became erroneous due to initialization.
4588 // Initialization failed because the super
5487 mirror::Class* super = klass->GetSuperClass(); local
[all...]
/art/runtime/gc/accounting/
H A Dspace_bitmap.cc193 mirror::Class* super = klass->GetSuperClass(); local
194 if (super != nullptr) {
195 WalkInstanceFields(visited, callback, obj, super, arg);
/art/runtime/verifier/
H A Dmethod_verifier.cc134 mirror::Class* super = klass->GetSuperClass(); local
136 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) {
138 failure_message = " that has no super class";
139 } else if (super != nullptr && super->IsFinal()) {
141 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
2901 * that to require that called_method->klass is the same as this->klass or this->super,
2919 // Unknown super class, fail so we re-check at runtime.
2920 // Fail(VERIFY_ERROR_BAD_CLASS_SOFT) << "super class unknown for '" << this_type << "'";
3816 // methods called on interfaces should be invoke-interface, invoke-super, invok
4097 const RegType& super = GetDeclaringClass().GetSuperClass(&reg_types_); local
[all...]

Completed in 118 milliseconds