Searched refs:stackMapAttribute (Results 1 - 18 of 18) sorted by relevance

/external/proguard/src/proguard/preverify/
H A DCodePreverifier.java203 Attribute stackMapAttribute;
213 stackMapAttribute = new StackMapAttribute(stackMapFrames);
222 stackMapAttribute = new StackMapTableAttribute(stackMapFrames);
226 stackMapAttribute.u2attributeNameIndex =
230 new AttributesEditor(programClass, programMethod, codeAttribute, true).addAttribute(stackMapAttribute);
235 stackMapAttribute.accept(programClass, programMethod, codeAttribute, new ClassPrinter());
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeNameFilter.java213 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
215 if (accepted(clazz, stackMapAttribute))
217 stackMapAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
H A DAttributeVisitor.java69 public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute); argument
H A DRequiredAttributeFilter.java227 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
231 stackMapAttribute.accept(clazz, method, codeAttribute, optionalAttributeVisitor);
H A DMultiAttributeVisitor.java232 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
236 attributeVisitors[index].visitStackMapAttribute(clazz, method, codeAttribute, stackMapAttribute);
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java134 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
136 clean(stackMapAttribute);
138 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DClassPrinter.java483 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
487 stackMapAttribute.u2stackMapFramesCount + "):");
490 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolRemapper.java336 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
338 stackMapAttribute.u2attributeNameIndex =
339 remapConstantIndex(stackMapAttribute.u2attributeNameIndex);
342 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DCodeAttributeComposer.java399 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
403 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DAttributeAdder.java296 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
H A DCodeAttributeEditor.java385 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
389 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java147 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
149 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, stackMapAttribute);
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java582 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
584 markAsUsed(stackMapAttribute);
586 markConstant(clazz, stackMapAttribute.u2attributeNameIndex);
589 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/obfuscate/
H A DUtf8UsageMarker.java196 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
198 markCpUtf8Entry(clazz, stackMapAttribute.u2attributeNameIndex);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java392 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
395 stackMapAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort();
397 stackMapAttribute.stackMapFrames = new FullFrame[stackMapAttribute.u2stackMapFramesCount];
398 for (int index = 0; index < stackMapAttribute.u2stackMapFramesCount; index++)
402 stackMapAttribute.stackMapFrames[index] = stackMapFrame;
H A DProgramClassWriter.java372 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
375 dataOutput.writeShort(stackMapAttribute.u2stackMapFramesCount);
377 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, stackMapFrameBodyWriter);
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java348 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
350 visitAnyAttribute(clazz, stackMapAttribute);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
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 1199 milliseconds