Home
last modified time | relevance | path

Searched refs:ParentClass (Results 1 – 3 of 3) sorted by relevance

/art/test/674-hiddenapi/src-ex/
DLinking.java43 return new ParentClass().fieldPublicWhitelist; in access()
49 return new ParentClass().fieldPublicLightGreylist; in access()
55 return new ParentClass().fieldPublicDarkGreylist; in access()
61 return new ParentClass().fieldPublicBlacklist; in access()
67 return new ParentClass().fieldPublicBlacklistAndCorePlatformApi; in access()
76 new ParentClass().fieldPublicWhitelistB = x; in access()
83 new ParentClass().fieldPublicLightGreylistB = x; in access()
90 new ParentClass().fieldPublicDarkGreylistB = x; in access()
97 new ParentClass().fieldPublicBlacklistB = x; in access()
104 new ParentClass().fieldPublicBlacklistAndCorePlatformApiB = x; in access()
[all …]
DChildClass.java91 boolean isParentInBoot = (ParentClass.class.getClassLoader().getParent() == null); in runTest()
144 for (Class klass : new Class<?>[] { ParentClass.class, ParentInterface.class }) { in runTest()
153 checkConstructor(ParentClass.class, visibility, hiddenness, expected, in runTest()
/art/test/674-hiddenapi/src/
DParentClass.java17 public class ParentClass { class
18 public ParentClass() {} in ParentClass() method in ParentClass
141 public ParentClass(int x, short y) {} in ParentClass() method in ParentClass
142 ParentClass(float x, short y) {} in ParentClass() method in ParentClass
143 protected ParentClass(long x, short y) {} in ParentClass() method in ParentClass
144 private ParentClass(double x, short y) {} in ParentClass() method in ParentClass
147 public ParentClass(int x, boolean y) {} in ParentClass() method in ParentClass
148 ParentClass(float x, boolean y) {} in ParentClass() method in ParentClass
149 protected ParentClass(long x, boolean y) {} in ParentClass() method in ParentClass
150 private ParentClass(double x, boolean y) {} in ParentClass() method in ParentClass
[all …]