Searched refs:super (Results 1 – 25 of 367) sorted by relevance
12345678910>>...15
/art/test/004-JniTest/ |
D | expected.txt | 10 RUNNING super object, super class, super nonstatic 12 PASSED super object, super class, super nonstatic 14 RUNNING super object, sub class, super nonstatic 16 PASSED super object, sub class, super nonstatic 19 RUNNING sub object, super class, super nonstatic 21 PASSED sub object, super class, super nonstatic 24 RUNNING sub object, sub class, super nonstatic 26 PASSED sub object, sub class, super nonstatic
|
/art/test/972-iface-super-multidex/smali/ |
D | concreteclass.smali | 18 .super Ljava/lang/Object; 24 # return SuperInterface.super.runDefault(); 27 # return ConflictInterface.super.runDefault(); 42 # Do an invoke super on this class, to confuse runtime/compiler. 43 invoke-super {p0}, LConflictInterface;->runDefault()Ljava/lang/String; 52 # Do an invoke super on this class, to confuse runtime/compiler. 53 invoke-super {p0}, LSuperInterface;->runDefault()Ljava/lang/String;
|
/art/test/552-invoke-non-existent-super/ |
D | info.txt | 1 Tests the invoke-super opcode when the super class does not have the method.
|
/art/test/551-invoke-super/smali/ |
D | invokesuper.smali | 18 .super LSuperClass; 29 # Do an invoke super on a non-super class to force complex resolution. 30 invoke-super {v1}, LInvokeSuper;->returnInt()I
|
/art/test/425-invoke-super/smali/ |
D | invokesuper.smali | 18 .super LSuperClass; 29 # Do an invoke super on a non-super class to force slow path. 30 invoke-super {v1}, LInvokeSuper;->returnInt()I
|
/art/test/552-invoke-non-existent-super/smali/ |
D | invokesuper.smali | 18 .super LSuperClass; 29 # Do an invoke super on a non-super class to force complex resolution. 30 invoke-super {v1}, LInvokeSuper;->returnInt()I
|
/art/test/800-smali/smali/ |
D | b_18800943_1.smali | 2 .super Ljava/lang/Object; 4 # This constructor should fail verification as the object is not initialized by a super-call.
|
D | b_18800943_2.smali | 2 .super Ljava/lang/Object; 4 # This constructor should fail verification as the object is not initialized by a super-call.
|
D | b_18380491ConcreteClass.smali | 3 .super LB18380491AbstractBase; 16 invoke-super {p0, p1}, LB18380491AbstractBase;->foo(I)I
|
D | b_20843113.smali | 2 .super Ljava/lang/Object; 12 # Call the super-constructor
|
/art/test/988-method-trace/ |
D | info.txt | 12 * all super-classes and super-interfaces of the above types.
|
/art/test/989-method-trace-throw/ |
D | info.txt | 12 * all super-classes and super-interfaces of the above types.
|
/art/test/556-invoke-super/smali/ |
D | invokesuper.smali | 18 .super LSuperClass; 29 # Do an invoke super on this class, to confuse runtime/compiler. 30 invoke-super {p0}, LInvokeSuper;->returnInt()I
|
/art/test/553-invoke-super/smali/ |
D | invokesuper.smali | 18 .super LSuperClass; 29 # Do an invoke super on this class, to confuse runtime/compiler. 30 invoke-super {v1}, LInvokeSuper;->$noinline$returnInt()I
|
/art/runtime/verifier/ |
D | class_verifier.cc | 60 ObjPtr<mirror::Class> super = klass->GetSuperClass(); in VerifyClass() local 62 if (super == nullptr && strcmp("Ljava/lang/Object;", klass->GetDescriptor(&temp)) != 0) { in VerifyClass() 65 } else if (super != nullptr && super->IsFinal()) { in VerifyClass() 67 failure_message = " that attempts to sub-class final class " + super->PrettyDescriptor(); in VerifyClass()
|
/art/test/031-class-attributes/ |
D | expected.txt | 28 super: class java.lang.Object 54 super: class java.lang.Object 80 super: class java.lang.Object 106 super: class java.lang.Object 132 super: class java.lang.Object 158 super: class OtherClass 184 super: class java.lang.Object 210 super: class java.util.HashMap
|
/art/test/803-no-super/smali/ |
D | nosuper1.smali | 3 .super LNoClass;
|
/art/test/425-invoke-super/ |
D | info.txt | 1 Tests the invoke-super opcode.
|
/art/test/594-invoke-super/ |
D | info.txt | 1 Invoke-super on various references.
|
/art/test/553-invoke-super/ |
D | info.txt | 1 Tests the invoke-super opcode.
|
/art/test/556-invoke-super/ |
D | info.txt | 1 Tests the invoke-super opcode with multidex.
|
/art/test/551-invoke-super/ |
D | info.txt | 1 Tests the invoke-super opcode when resolving to an abstract method.
|
/art/test/434-invoke-direct/ |
D | info.txt | 2 private method from the super class.
|
/art/test/974-verify-interface-super/ |
D | info.txt | 1 Test that we do the right thing with invoke-super on interfaces when there are
|
/art/test/563-checker-invoke-super/ |
D | info.txt | 1 Tests that invoke-super's to interface methods are optimized to direct method
|
12345678910>>...15