Home | History | Annotate | Download | only in src

Lines Matching refs:notStrippable

29     private static HashSet<ClassInfo> notStrippable;
33 notStrippable = new HashSet();
50 cantStripThis(cl, notStrippable, "0:0");
56 for (ClassInfo cl: notStrippable) {
132 for (ClassInfo cl: notStrippable) {
149 writeXML(xmlWriter, packages, notStrippable);
158 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable, String why) {
160 if (!notStrippable.add(cl)) {
171 cantStripThis(ai.type(), notStrippable, "1:" + cl.qualifiedName());
180 cantStripThis(fInfo.type().asClassInfo(), notStrippable,
186 cantStripThis(tTypeInfo.asClassInfo(), notStrippable,
199 cantStripThis(tInfo.asClassInfo(), notStrippable, "4:" + cl.qualifiedName());
205 //cantStripThis(cl.annotationElements(), notStrippable);
207 cantStripThis(cl.allSelfMethods(), notStrippable);
208 cantStripThis(cl.allConstructors(), notStrippable);
211 cantStripThis(cl.containingClass(), notStrippable, "5:" + cl.qualifiedName());
231 cantStripThis(supr, notStrippable, "6:" + cl.realSuperclass().name()
237 private static void cantStripThis(MethodInfo[] mInfos , HashSet<ClassInfo> notStrippable) {
244 cantStripThis(tInfo.asClassInfo(), notStrippable, "8:" +
253 cantStripThis(pInfo.type().asClassInfo(), notStrippable,
267 cantStripThis(tcl, notStrippable,
279 cantStripThis(thrown, notStrippable, "11:" +
284 cantStripThis(mInfo.returnType().asClassInfo(), notStrippable,
290 cantStripThis(tyInfo.asClassInfo(), notStrippable,
390 if (notStrippable.contains(iface.asClassInfo())
425 if (notStrippable.contains(inner)
492 MethodInfo overriddenMethod = method.findRealOverriddenMethod(method.name(), method.signature(), notStrippable);
638 MethodInfo om = mi.findSuperclassImplementation(notStrippable);
780 HashSet notStrippable) {
788 writePackageXML(xmlWriter, pack, allClasses.get(pack), notStrippable);
794 HashSet notStrippable) {
806 writeClassXML(xmlWriter, cl, notStrippable);
813 static void writeClassXML(PrintStream xmlWriter, ClassInfo cl, HashSet notStrippable) {
839 if (notStrippable.contains(iface)) {