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

  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 222 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
224 if (accepted(clazz, stackMapTableAttribute))
226 stackMapTableAttribute.accept(clazz, method, codeAttribute, attributeVisitor);
RequiredAttributeFilter.java 236 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
240 stackMapTableAttribute.accept(clazz, method, codeAttribute, requiredAttributeVisitor);
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 142 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
144 clean(stackMapTableAttribute);
146 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
ClassPrinter.java 495 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
499 stackMapTableAttribute.u2stackMapFramesCount + "):");
502 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 407 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
411 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
CodeAttributeEditor.java 393 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
397 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
    [all...]
ConstantPoolRemapper.java 346 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
348 stackMapTableAttribute.u2attributeNameIndex =
349 remapConstantIndex(stackMapTableAttribute.u2attributeNameIndex);
352 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
  /external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java 381 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
384 dataOutput.writeShort(stackMapTableAttribute.u2stackMapFramesCount);
386 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
  /external/proguard/src/proguard/shrink/
UsageMarker.java 593 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
595 markAsUsed(stackMapTableAttribute);
597 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex);
600 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);

Completed in 180 milliseconds