/external/proguard/src/proguard/classfile/attribute/preverification/ |
StackMapAttribute.java | 36 public FullFrame[] stackMapFrames; 50 public StackMapAttribute(FullFrame[] stackMapFrames) 60 FullFrame[] stackMapFrames) 84 FullFrame stackMapFrame = stackMapFrames[index];
|
FullFrame.java | 32 public class FullFrame extends StackMapFrame 41 * Creates an uninitialized FullFrame. 43 public FullFrame() 49 * Creates a FullFrame with the given variables and stack. 51 public FullFrame(int offsetDelta, 64 * Creates a FullFrame with the given variables and stack. 66 public FullFrame(int offsetDelta, 127 FullFrame other = (FullFrame)object;
|
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
StackMapFrameVisitor.java | 39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame);
|
/external/proguard/src/proguard/preverify/ |
CodePreverifier.java | 134 stackMapFrameList.add(new FullFrame(offset, 209 FullFrame[] stackMapFrames = new FullFrame[frameCount]; 495 FullFrame fullFrame = (FullFrame)stackMapFrameList.get(index); 497 int variablesCount = fullFrame.variablesCount; 498 VerificationType[] variables = fullFrame.variables; 499 int stackCount = fullFrame.stackCount; 500 VerificationType[] stack = fullFrame.stack [all...] |
/external/proguard/src/proguard/classfile/io/ |
ProgramClassReader.java | 397 stackMapAttribute.stackMapFrames = new FullFrame[stackMapAttribute.u2stackMapFramesCount]; 400 FullFrame stackMapFrame = new FullFrame(); 598 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 600 fullFrame.u2offsetDelta = dataInput.readUnsignedShort(); 603 fullFrame.variablesCount = dataInput.readUnsignedShort(); 604 fullFrame.variables = new VerificationType[fullFrame.variablesCount]; 605 for (int index = 0; index < fullFrame.variablesCount; index++ [all...] |
ProgramClassWriter.java | 598 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 600 dataOutput.writeShort(fullFrame.u2offsetDelta); 603 dataOutput.writeShort(fullFrame.variablesCount); 604 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 607 dataOutput.writeShort(fullFrame.stackCount); 608 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
|
/external/proguard/src/proguard/classfile/visitor/ |
ClassCleaner.java | 220 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 222 clean(fullFrame); 224 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 225 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
|
ClassPrinter.java | 734 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 736 print(visitorInfo(fullFrame) + 740 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 744 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); [all...] |
/external/proguard/src/proguard/classfile/editor/ |
ConstantPoolRemapper.java | 490 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 493 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 494 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
|
CodeAttributeComposer.java | 541 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 544 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame); 547 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 548 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
|
CodeAttributeEditor.java | 878 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 881 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame); 884 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 885 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); [all...] |
/external/proguard/src/proguard/shrink/ |
UsageMarker.java | 723 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 726 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); 727 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
|
/external/proguard/src/proguard/classfile/util/ |
SimplifiedVisitor.java | 559 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) 561 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame);
|
/external/proguard/lib/ |
proguard.jar | |