Searched defs:notStrippable (Results 1 - 3 of 3) sorted by relevance

/external/doclava/src/com/google/doclava/
H A DStubs.java37 final HashSet<ClassInfo> notStrippable = new HashSet<ClassInfo>();
78 cantStripThis(cl, notStrippable, "0:0");
84 for (ClassInfo cl : notStrippable) {
144 // packages contains all the notStrippable classes mapped by their containing packages
146 for (ClassInfo cl : notStrippable) {
151 writeClassFile(stubsDir, notStrippable, cl);
168 writeApi(apiWriter, packages, notStrippable);
174 writeKeepList(keepListWriter, packages, notStrippable);
191 writeRemovedApi(removedApiWriter, allPackageClassMap, notStrippable);
196 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable, Strin argument
267 cantStripThis(ArrayList<MethodInfo> mInfos, HashSet<ClassInfo> notStrippable) argument
335 writeClassFile(String stubsDir, HashSet<ClassInfo> notStrippable, ClassInfo cl) argument
365 writeClassFile(PrintStream stream, HashSet<ClassInfo> notStrippable, ClassInfo cl) argument
373 writeClass(PrintStream stream, HashSet<ClassInfo> notStrippable, ClassInfo cl) argument
650 methodIsOverride(HashSet<ClassInfo> notStrippable, MethodInfo mi) argument
814 writeXML(PrintStream xmlWriter, HashMap<PackageInfo, List<ClassInfo>> allClasses, HashSet<ClassInfo> notStrippable) argument
845 writePackageXML(PrintStream xmlWriter, PackageInfo pack, Collection<ClassInfo> classList, HashSet<ClassInfo> notStrippable) argument
865 writeClassXML(PrintStream xmlWriter, ClassInfo cl, HashSet<ClassInfo> notStrippable) argument
1030 writeRemovedApi(PrintStream apiWriter, HashMap<PackageInfo, List<ClassInfo>> allPackageClassMap, Set<ClassInfo> notStrippable) argument
1061 writeClassRemovedSelfMembers(PrintStream apiWriter, ClassInfo cl, Set<ClassInfo> notStrippable) argument
1144 writeApi(PrintStream apiWriter, HashMap<PackageInfo, List<ClassInfo>> allClasses, HashSet<ClassInfo> notStrippable) argument
1156 writePackageApi(PrintStream apiWriter, PackageInfo pack, Collection<ClassInfo> classList, HashSet<ClassInfo> notStrippable) argument
1177 writeClassApi(PrintStream apiWriter, ClassInfo cl, HashSet<ClassInfo> notStrippable) argument
1389 writeKeepList(PrintStream keepListWriter, HashMap<PackageInfo, List<ClassInfo>> allClasses, HashSet<ClassInfo> notStrippable) argument
1401 writePackageKeepList(PrintStream keepListWriter, PackageInfo pack, Collection<ClassInfo> classList, HashSet<ClassInfo> notStrippable) argument
1416 writeClassKeepList(PrintStream keepListWriter, ClassInfo cl, HashSet<ClassInfo> notStrippable) argument
[all...]
H A DDoclava.java1003 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable) { argument
1004 if (!notStrippable.add(cl)) {
1011 cantStripThis(supr, notStrippable);
1014 cantStripThis(iface, notStrippable);
1036 HashSet<ClassInfo> notStrippable = new HashSet<ClassInfo>();
1044 cantStripThis(cl, notStrippable);
1050 for (ClassInfo cl : notStrippable) {
H A DMethodInfo.java92 public MethodInfo findRealOverriddenMethod(String name, String signature, HashSet notStrippable) { argument
111 && notStrippable.contains(me.containingClass())) {
119 public MethodInfo findSuperclassImplementation(HashSet notStrippable) { argument
143 && notStrippable.contains(me.containingClass())) {

Completed in 111 milliseconds