Home
last modified time | relevance | path

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

/external/doclava/src/com/google/doclava/
DStubs.java53 final HashSet<ClassInfo> notStrippable = new HashSet<ClassInfo>(); in writeStubsAndApi() local
106 cantStripThis(cl, notStrippable, "0:0", stubImportPackages); in writeStubsAndApi()
112 for (ClassInfo cl : notStrippable) { in writeStubsAndApi()
193 for (ClassInfo cl : notStrippable) { in writeStubsAndApi()
201 writeClassFile(stubsDir, notStrippable, cl); in writeStubsAndApi()
218 writeApi(apiWriter, packages, notStrippable); in writeStubsAndApi()
224 writeKeepList(keepListWriter, packages, notStrippable); in writeStubsAndApi()
241 writePredicateApi(removedApiWriter, allPackageClassMap, notStrippable, in writeStubsAndApi()
247 writePredicateApi(exactApiWriter, allPackageClassMap, notStrippable, in writeStubsAndApi()
328 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable, String why, in cantStripThis() argument
[all …]
DDoclava.java1257 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable) { in cantStripThis() argument
1258 if (!notStrippable.add(cl)) { in cantStripThis()
1265 cantStripThis(supr, notStrippable); in cantStripThis()
1268 cantStripThis(iface, notStrippable); in cantStripThis()
1290 HashSet<ClassInfo> notStrippable = new HashSet<ClassInfo>(); in writeKeepList() local
1298 cantStripThis(cl, notStrippable); in writeKeepList()
1304 for (ClassInfo cl : notStrippable) { in writeKeepList()
DMethodInfo.java100 public MethodInfo findRealOverriddenMethod(String name, String signature, HashSet notStrippable) { in findRealOverriddenMethod() argument
119 && notStrippable.contains(me.containingClass())) { in findRealOverriddenMethod()