Searched refs:subclass (Results 1 – 12 of 12) sorted by relevance
/art/tools/ahat/src/test/com/android/ahat/ |
D | ObjectsHandlerTest.java | 49 List<AhatInstance> subclass = ObjectsHandler.getObjects( in getObjects() local 51 assertEquals(1, subclass.size()); in getObjects() 52 assertTrue(subclass.get(0).getClassName().equals("DumpedStuff")); in getObjects() 53 assertEquals(dumped.get(0), subclass.get(0)); in getObjects()
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | ObjectsHandler.java | 51 Site site, String className, boolean subclass, String heapName) { in getObjects() argument 54 && (subclass ? x.isInstanceOfClass(className) : className.equals(x.getClassName())); in getObjects() 67 boolean subclass = (query.getInt("subclass", 0) != 0); in handle() 70 List<AhatInstance> insts = getObjects(site, className, subclass, heapName); in handle() 86 DocString subclassChoice = DocString.text(subclass ? "included" : "excluded"); in handle() 88 subclassChoice.appendLink(query.with("subclass", subclass ? 0 : 1), in handle() 89 DocString.text(subclass ? "excluded" : "included")); in handle()
|
/art/test/589-super-imt/ |
D | info.txt | 1 Test what the IMT is properly set for a subclass, and that the 2 subclass won't use the ImtConflictTable table of its super class.
|
/art/test/142-classloader2/smali/ |
D | MyPathClassLoader.smali | 1 # Simple subclass of PathClassLoader with methods overridden. 2 # We need to use smali right now to subclass a libcore class, see b/24304298.
|
/art/test/434-invoke-direct/ |
D | info.txt | 1 Tests that IllegalAccessError is thrown when a subclass invokes-direct a
|
/art/test/2000-virtual-list-structural/ |
D | AbstractCollection.patch | 4 * Sole constructor. (For invocation by subclass constructors, typically
|
/art/test/954-invoke-polymorphic-verifier/smali/ |
D | Subclass.smali | 25 # Get a MethodHandleImpl instance (subclass of MethodHandle). 30 # Calling MethodHandle.invoke() on MethodHandleImpl instance (subclass of MethodHandle) => Okay
|
/art/test/135-MirandaDispatch/smali/ |
D | b_21646347.smali | 4 # being a subclass of the abstract class, not postpone the check because the miranda method's
|
/art/test/VerifierDeps/ |
D | MySimpleTimeZone.smali | 19 # Define foo() as a final method. It is used by the MyErroneousTimeZone subclass
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 355 for (HierarchyClass* subclass : extended_by_) { in ForEachSubClass() 356 if (fn(subclass)) { in ForEachSubClass() 357 subclass->ForEachSubClass(fn); in ForEachSubClass() 396 for (HierarchyClass* subclass : extended_by_) { in ForEachResolvableMember_Impl() 397 subclass->ForEachResolvableMember_Impl( in ForEachResolvableMember_Impl() 480 klass->ForEachSubClass([&visible, &member](HierarchyClass* subclass) { in IsMemberVisible() argument 481 if (subclass->HasMatchingMember(member)) { in IsMemberVisible() 487 } else if (subclass->GetOneDexClass().IsPublic()) { in IsMemberVisible()
|
/art/test/1982-no-virtuals-structural-redefinition/ |
D | expected.txt | 29 …m { id: 1003, class: class art.Test1982$SubTransform } is SubTransform (subclass of: class art.Tes…
|
/art/tools/ahat/ |
D | README.txt | 57 Add option for viewing subclass instances of a class.
|