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

/external/proguard/src/proguard/preverify/
H A DCodePreverifier.java212 Attribute stackMapAttribute;
222 stackMapAttribute = new StackMapAttribute(stackMapFrames);
231 stackMapAttribute = new StackMapTableAttribute(stackMapFrames);
235 stackMapAttribute.u2attributeNameIndex =
239 new AttributesEditor(programClass, programMethod, codeAttribute, true).addAttribute(stackMapAttribute);
244 stackMapAttribute.accept(programClass, programMethod, codeAttribute, new ClassPrinter());
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DNonEmptyAttributeFilter.java172 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
174 if (stackMapAttribute.u2stackMapFramesCount > 0)
176 stackMapAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
H A DAttributeNameFilter.java254 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
256 if (accepted(clazz, stackMapAttribute))
258 stackMapAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
H A DRequiredAttributeFilter.java238 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
242 stackMapAttribute.accept(clazz, method, codeAttribute, optionalAttributeVisitor);
H A DAttributeVisitor.java70 public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute); argument
H A DMultiAttributeVisitor.java241 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
245 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.java524 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
528 stackMapAttribute.u2stackMapFramesCount + "):");
531 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java153 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
155 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, stackMapAttribute);
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolShrinker.java275 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
277 markConstant(clazz, stackMapAttribute.u2attributeNameIndex);
280 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DConstantPoolRemapper.java368 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
370 stackMapAttribute.u2attributeNameIndex =
371 remapConstantIndex(stackMapAttribute.u2attributeNameIndex);
374 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DUtf8Shrinker.java216 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
218 markCpUtf8Entry(clazz, stackMapAttribute.u2attributeNameIndex);
H A DCodeAttributeComposer.java473 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
477 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
H A DAttributeAdder.java294 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
H A DCodeAttributeEditor.java472 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
476 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java704 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
706 markAsUsed(stackMapAttribute);
708 markConstant(clazz, stackMapAttribute.u2attributeNameIndex);
711 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java428 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
431 stackMapAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort();
433 stackMapAttribute.stackMapFrames = new FullFrame[stackMapAttribute.u2stackMapFramesCount];
434 for (int index = 0; index < stackMapAttribute.u2stackMapFramesCount; index++)
438 stackMapAttribute.stackMapFrames[index] = stackMapFrame;
H A DProgramClassWriter.java402 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
405 dataOutput.writeShort(stackMapAttribute.u2stackMapFramesCount);
407 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, stackMapFrameBodyWriter);
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java372 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute) argument
374 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 538 milliseconds