Searched defs:enclosingMethodAttribute (Results 1 - 25 of 28) sorted by relevance

12

/external/proguard/src/proguard/optimize/peephole/
H A DRetargetedInnerClassAttributeRemover.java128 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
134 checkTarget(enclosingMethodAttribute.referencedClass);
/external/proguard/src/proguard/classfile/editor/
H A DNameAndTypeShrinker.java105 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
107 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
109 markNameAndTypeConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex);
H A DAttributeAdder.java156 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
160 new EnclosingMethodAttribute(constantAdder.addConstant(clazz, enclosingMethodAttribute.u2attributeNameIndex),
161 constantAdder.addConstant(clazz, enclosingMethodAttribute.u2classIndex),
162 enclosingMethodAttribute.u2nameAndTypeIndex == 0 ? 0 :
163 constantAdder.addConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex));
165 newEnclosingMethodAttribute.referencedClass = enclosingMethodAttribute.referencedClass;
166 newEnclosingMethodAttribute.referencedMethod = enclosingMethodAttribute.referencedMethod;
H A DMemberReferenceFixer.java294 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
296 Member referencedMember = enclosingMethodAttribute.referencedMethod;
299 Clazz referencedClass = enclosingMethodAttribute.referencedClass;
305 if (!enclosingMethodAttribute.getName(clazz).equals(newName) ||
306 !enclosingMethodAttribute.getType(clazz).equals(newType))
309 enclosingMethodAttribute.u2nameAndTypeIndex =
H A DUtf8Shrinker.java165 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
167 markCpUtf8Entry(clazz, enclosingMethodAttribute.u2attributeNameIndex);
170 //clazz.constantPoolEntryAccept(this, enclosingMethodAttribute.u2classIndex);
171 //clazz.constantPoolEntryAccept(this, enclosingMethodAttribute.u2nameAndTypeIndex);
H A DConstantPoolRemapper.java294 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
296 enclosingMethodAttribute.u2attributeNameIndex =
297 remapConstantIndex(enclosingMethodAttribute.u2attributeNameIndex);
298 enclosingMethodAttribute.u2classIndex =
299 remapConstantIndex(enclosingMethodAttribute.u2classIndex);
300 enclosingMethodAttribute.u2nameAndTypeIndex =
301 remapConstantIndex(enclosingMethodAttribute.u2nameAndTypeIndex);
H A DConstantPoolShrinker.java229 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
231 markConstant(clazz, enclosingMethodAttribute.u2attributeNameIndex);
232 markConstant(clazz, enclosingMethodAttribute.u2classIndex);
234 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
236 markConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeNameFilter.java137 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
139 if (accepted(clazz, enclosingMethodAttribute))
141 attributeVisitor.visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
H A DAttributeVisitor.java43 public void visitEnclosingMethodAttribute( Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute); argument
H A DMultiAttributeVisitor.java124 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
128 attributeVisitors[index].visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
H A DNonEmptyAttributeFilter.java90 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
92 attributeVisitor.visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
H A DRequiredAttributeFilter.java121 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
125 optionalAttributeVisitor.visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
/external/proguard/src/proguard/classfile/visitor/
H A DReferencedClassVisitor.java152 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
155 enclosingMethodAttribute.referencedClassAccept(classVisitor);
H A DClassPrinter.java445 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
447 println(visitorInfo(enclosingMethodAttribute) +
451 clazz.constantPoolEntryAccept(enclosingMethodAttribute.u2classIndex, this);
453 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
455 clazz.constantPoolEntryAccept(enclosingMethodAttribute.u2nameAndTypeIndex, this);
/external/proguard/src/proguard/obfuscate/
H A DClassObfuscator.java187 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
190 enclosingMethodAttribute.referencedClassAccept(this);
193 String outerClassName = clazz.getClassName(enclosingMethodAttribute.u2classIndex);
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java80 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
82 attributeVisitor.visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java185 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
193 if (enclosingMethodAttribute.referencedMethod != null &&
194 !usageMarker.isUsed(enclosingMethodAttribute.referencedMethod))
196 enclosingMethodAttribute.u2nameAndTypeIndex = 0;
198 enclosingMethodAttribute.referencedMethod = null;
H A DUsageMarker.java636 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
638 markAsUsed(enclosingMethodAttribute);
640 markConstant(clazz, enclosingMethodAttribute.u2attributeNameIndex);
641 markConstant(clazz, enclosingMethodAttribute.u2classIndex);
643 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
645 markConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/util/
H A DClassReferenceInitializer.java278 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
281 String enclosingClassName = enclosingMethodAttribute.getClassName(clazz);
284 enclosingMethodAttribute.referencedClass =
287 if (enclosingMethodAttribute.referencedClass != null)
291 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
293 String name = enclosingMethodAttribute.getName(clazz);
294 String type = enclosingMethodAttribute.getType(clazz);
297 enclosingMethodAttribute.referencedMethod =
298 enclosingMethodAttribute.referencedClass.findMethod(name, type);
300 if (enclosingMethodAttribute
[all...]
H A DSimplifiedVisitor.java268 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
270 visitAnyAttribute(clazz, enclosingMethodAttribute);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java354 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
356 enclosingMethodAttribute.u2classIndex = dataInput.readUnsignedShort();
357 enclosingMethodAttribute.u2nameAndTypeIndex = dataInput.readUnsignedShort();
H A DProgramClassWriter.java343 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
345 dataOutput.writeShort(enclosingMethodAttribute.u2classIndex);
346 dataOutput.writeShort(enclosingMethodAttribute.u2nameAndTypeIndex);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...

Completed in 1625 milliseconds

12