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

/external/proguard/src/proguard/optimize/peephole/
H A DRetargetedInnerClassAttributeRemover.java98 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
104 checkTarget(enclosingMethodAttribute.referencedClass);
/external/proguard/src/proguard/obfuscate/
H A DNameAndTypeUsageMarker.java97 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
99 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
101 markNameAndTypeConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex);
H A DClassObfuscator.java179 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
182 enclosingMethodAttribute.referencedClassAccept(this);
185 String outerClassName = clazz.getClassName(enclosingMethodAttribute.u2classIndex);
H A DUtf8UsageMarker.java145 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
147 markCpUtf8Entry(clazz, enclosingMethodAttribute.u2attributeNameIndex);
150 //clazz.constantPoolEntryAccept(this, enclosingMethodAttribute.u2classIndex);
151 //clazz.constantPoolEntryAccept(this, enclosingMethodAttribute.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeNameFilter.java96 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
98 if (accepted(clazz, enclosingMethodAttribute))
100 enclosingMethodAttribute.accept(clazz, attributeVisitor);
H A DAttributeVisitor.java42 public void visitEnclosingMethodAttribute( Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute); argument
H A DMultiAttributeVisitor.java115 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
119 attributeVisitors[index].visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
H A DRequiredAttributeFilter.java110 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
114 enclosingMethodAttribute.accept(clazz, optionalAttributeVisitor);
/external/proguard/src/proguard/classfile/editor/
H A DAttributeAdder.java154 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
158 new EnclosingMethodAttribute(constantAdder.addConstant(clazz, enclosingMethodAttribute.u2attributeNameIndex),
159 constantAdder.addConstant(clazz, enclosingMethodAttribute.u2classIndex),
160 enclosingMethodAttribute.u2nameAndTypeIndex == 0 ? 0 :
161 constantAdder.addConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex));
163 newEnclosingMethodAttribute.referencedClass = enclosingMethodAttribute.referencedClass;
164 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;
302 if (!enclosingMethodAttribute.getClassName(clazz).equals(referencedClass.getName()))
305 enclosingMethodAttribute.u2classIndex =
310 if (!enclosingMethodAttribute.getName(clazz).equals(referencedMember.getName(referencedClass)) ||
311 !enclosingMethodAttribute.getType(clazz).equals(referencedMember.getDescriptor(referencedClass)))
314 enclosingMethodAttribute.u2nameAndTypeIndex =
H A DConstantPoolRemapper.java261 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
263 enclosingMethodAttribute.u2attributeNameIndex =
264 remapConstantIndex(enclosingMethodAttribute.u2attributeNameIndex);
265 enclosingMethodAttribute.u2classIndex =
266 remapConstantIndex(enclosingMethodAttribute.u2classIndex);
267 enclosingMethodAttribute.u2nameAndTypeIndex =
268 remapConstantIndex(enclosingMethodAttribute.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/visitor/
H A DReferencedClassVisitor.java138 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
141 enclosingMethodAttribute.referencedClassAccept(classVisitor);
H A DClassPrinter.java397 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
399 println(visitorInfo(enclosingMethodAttribute) +
403 clazz.constantPoolEntryAccept(enclosingMethodAttribute.u2classIndex, this);
405 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
407 clazz.constantPoolEntryAccept(enclosingMethodAttribute.u2nameAndTypeIndex, this);
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java75 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
77 attributeVisitor.visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java152 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
160 if (enclosingMethodAttribute.referencedMethod != null &&
161 !usageMarker.isUsed(enclosingMethodAttribute.referencedMethod))
163 enclosingMethodAttribute.u2nameAndTypeIndex = 0;
165 enclosingMethodAttribute.referencedMethod = null;
H A DUsageMarker.java509 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
511 markAsUsed(enclosingMethodAttribute);
513 markConstant(clazz, enclosingMethodAttribute.u2attributeNameIndex);
514 markConstant(clazz, enclosingMethodAttribute.u2classIndex);
516 if (enclosingMethodAttribute.u2nameAndTypeIndex != 0)
518 markConstant(clazz, enclosingMethodAttribute.u2nameAndTypeIndex);
/external/proguard/src/proguard/classfile/util/
H A DClassReferenceInitializer.java232 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
235 String enclosingClassName = enclosingMethodAttribute.getClassName(clazz);
253 if (enclosingMethodAttribute.u2nameAndTypeIndex == 0)
258 String name = enclosingMethodAttribute.getName(clazz);
259 String type = enclosingMethodAttribute.getType(clazz);
279 enclosingMethodAttribute.referencedClass = referencedClass;
280 enclosingMethodAttribute.referencedMethod = referencedMethod;
H A DSimplifiedVisitor.java243 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
245 visitAnyAttribute(clazz, enclosingMethodAttribute);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java311 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
313 enclosingMethodAttribute.u2classIndex = dataInput.readUnsignedShort();
314 enclosingMethodAttribute.u2nameAndTypeIndex = dataInput.readUnsignedShort();
H A DProgramClassWriter.java306 public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute) argument
308 dataOutput.writeShort(enclosingMethodAttribute.u2classIndex);
309 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 ...

Completed in 531 milliseconds