HomeSort by relevance Sort by last modified time
    Searched defs:stackMapAttribute (Results 1 - 10 of 10) sorted by null

  /external/proguard/src/proguard/preverify/
CodePreverifier.java 176 ((StackMapAttribute)originalStackMapAttribute).u2stackMapFramesCount :
180 ((StackMapAttribute)originalStackMapAttribute).stackMapFrames :
203 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/
AttributeNameFilter.java 213 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
215 if (accepted(clazz, stackMapAttribute))
217 stackMapAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
RequiredAttributeFilter.java 227 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
231 stackMapAttribute.accept(clazz, method, codeAttribute, optionalAttributeVisitor);
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 134 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
136 clean(stackMapAttribute);
138 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
ClassPrinter.java 483 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
487 stackMapAttribute.u2stackMapFramesCount + "):");
490 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 399 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
403 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
CodeAttributeEditor.java 385 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
389 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
    [all...]
ConstantPoolRemapper.java 336 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
338 stackMapAttribute.u2attributeNameIndex =
339 remapConstantIndex(stackMapAttribute.u2attributeNameIndex);
342 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
  /external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java 372 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
375 dataOutput.writeShort(stackMapAttribute.u2stackMapFramesCount);
377 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, stackMapFrameBodyWriter);
  /external/proguard/src/proguard/shrink/
UsageMarker.java 582 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
584 markAsUsed(stackMapAttribute);
586 markConstant(clazz, stackMapAttribute.u2attributeNameIndex);
589 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);

Completed in 3605 milliseconds