Searched refs:stackMapTableAttribute (Results 1 - 19 of 19) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/visitor/
H A DNonEmptyAttributeFilter.java181 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
183 if (stackMapTableAttribute.u2stackMapFramesCount > 0)
185 stackMapTableAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
H A DAttributeNameFilter.java263 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
265 if (accepted(clazz, stackMapTableAttribute))
267 stackMapTableAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
H A DRequiredAttributeFilter.java247 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
251 stackMapTableAttribute.accept(clazz, method, codeAttribute, optionalAttributeVisitor);
H A DAttributeVisitor.java71 public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute); argument
H A DMultiAttributeVisitor.java250 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
254 attributeVisitors[index].visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java142 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
144 clean(stackMapTableAttribute);
146 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DClassPrinter.java536 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
540 stackMapTableAttribute.u2stackMapFramesCount + "):");
543 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java159 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
161 attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolShrinker.java284 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
286 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex);
289 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DConstantPoolRemapper.java378 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
380 stackMapTableAttribute.u2attributeNameIndex =
381 remapConstantIndex(stackMapTableAttribute.u2attributeNameIndex);
384 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DUtf8Shrinker.java222 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
224 markCpUtf8Entry(clazz, stackMapTableAttribute.u2attributeNameIndex);
H A DCodeAttributeComposer.java481 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
485 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DAttributeAdder.java300 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
H A DCodeAttributeEditor.java480 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
484 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java715 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
717 markAsUsed(stackMapTableAttribute);
719 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex);
722 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java443 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
446 stackMapTableAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort();
448 stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesCount];
449 for (int index = 0; index < stackMapTableAttribute.u2stackMapFramesCount; index++)
453 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame;
H A DProgramClassWriter.java411 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
414 dataOutput.writeShort(stackMapTableAttribute.u2stackMapFramesCount);
416 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java378 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) argument
380 visitAnyAttribute(clazz, stackMapTableAttribute);
/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 235 milliseconds