/external/proguard/src/proguard/classfile/attribute/preverification/ |
StackMapTableAttribute.java | 33 public class StackMapTableAttribute extends Attribute 40 * Creates an uninitialized StackMapTableAttribute. 42 public StackMapTableAttribute() 48 * Creates a StackMapTableAttribute with the given stack map frames. 50 public StackMapTableAttribute(StackMapFrame[] stackMapFrames) 57 * Creates a StackMapTableAttribute with the given stack map frames. 59 public StackMapTableAttribute(int stackMapFramesCount,
|
/external/annotation-tools/asmx/src/org/objectweb/asm/util/attrs/ |
ASMStackMapTableAttribute.java | 38 import org.objectweb.asm.attrs.StackMapTableAttribute; 43 * An {@link ASMifiable} {@link StackMapTableAttribute} sub class. 47 public class ASMStackMapTableAttribute extends StackMapTableAttribute implements 73 StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr, 107 buf.append("StackMapTableAttribute ").append(varName); 108 buf.append(" = new StackMapTableAttribute(frames);\n");
|
/external/annotation-tools/asmx/test/conform/org/objectweb/asm/util/ |
UnitTest.java | 8 import org.objectweb.asm.attrs.StackMapTableAttribute; 124 fv.visitAttribute(new StackMapTableAttribute()); 145 mv.visitAttribute(new StackMapTableAttribute());
|
/external/annotation-tools/asmx/src/org/objectweb/asm/attrs/ |
StackMapTableAttribute.java | 354 public class StackMapTableAttribute extends Attribute { 412 public StackMapTableAttribute() { 416 public StackMapTableAttribute(List frames) { 585 return new StackMapTableAttribute(frames); [all...] |
/external/proguard/src/proguard/preverify/ |
CodePreverifier.java | 186 ((StackMapTableAttribute)originalStackMapAttribute).u2stackMapFramesCount; 190 ((StackMapTableAttribute)originalStackMapAttribute).stackMapFrames; 231 stackMapAttribute = new StackMapTableAttribute(stackMapFrames);
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AttributeVisitor.java | 72 public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute);
|
AttributeNameFilter.java | 272 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 274 if (accepted(clazz, stackMapTableAttribute)) 276 attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
|
NonEmptyAttributeFilter.java | 189 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 191 if (stackMapTableAttribute.u2stackMapFramesCount > 0) 193 attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
|
RequiredAttributeFilter.java | 256 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 260 optionalAttributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
|
MultiAttributeVisitor.java | 259 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 263 attributeVisitors[index].visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
|
/external/proguard/src/proguard/classfile/visitor/ |
ClassCleaner.java | 163 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 165 clean(stackMapTableAttribute); 167 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
|
ClassPrinter.java | 554 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 558 stackMapTableAttribute.u2stackMapFramesCount + "):"); 561 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); [all...] |
/external/proguard/src/proguard/classfile/editor/ |
Utf8Shrinker.java | 231 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 233 markCpUtf8Entry(clazz, stackMapTableAttribute.u2attributeNameIndex);
|
AttributeAdder.java | 322 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
|
ConstantPoolShrinker.java | 294 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 296 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex); 299 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
|
CodeAttributeComposer.java | 487 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 491 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); [all...] |
ConstantPoolRemapper.java | 389 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 391 stackMapTableAttribute.u2attributeNameIndex = 392 remapConstantIndex(stackMapTableAttribute.u2attributeNameIndex); 395 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
|
CodeAttributeEditor.java | 485 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 489 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); [all...] |
/external/proguard/src/proguard/optimize/ |
ChangedCodePrinter.java | 164 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 166 attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
|
/external/proguard/src/proguard/shrink/ |
UsageMarker.java | 736 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 738 markAsUsed(stackMapTableAttribute); 740 markConstant(clazz, stackMapTableAttribute.u2attributeNameIndex); 743 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this); [all...] |
/external/proguard/src/proguard/classfile/io/ |
ProgramClassReader.java | 465 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 468 stackMapTableAttribute.u2stackMapFramesCount = dataInput.readUnsignedShort(); 470 stackMapTableAttribute.stackMapFrames = new StackMapFrame[stackMapTableAttribute.u2stackMapFramesCount]; 471 for (int index = 0; index < stackMapTableAttribute.u2stackMapFramesCount; index++) 475 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame; [all...] |
ProgramClassWriter.java | 427 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 430 dataOutput.writeShort(stackMapTableAttribute.u2stackMapFramesCount); 432 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
|
/external/proguard/src/proguard/classfile/util/ |
SimplifiedVisitor.java | 385 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute) 387 visitAnyAttribute(clazz, stackMapTableAttribute); [all...] |
/external/proguard/lib/ |
proguard.jar | |
/prebuilts/tools/common/proguard/proguard4.7/lib/ |
proguard.jar | |