• Home
  • Raw
  • Download

Lines Matching refs:notStrippable

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