/external/javassist/src/main/javassist/bytecode/ |
D | StackMapTable.java | 217 pos = fullFrame(pos); in stackMapFrames() 312 private int fullFrame(int pos) throws BadBytecode { in fullFrame() method in StackMapTable.Walker 322 fullFrame(pos, offset, localsTags, localsData, itemsTags, itemsData); in fullFrame() 338 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, in fullFrame() method in StackMapTable.Walker 385 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, in fullFrame() method in StackMapTable.SimpleCopy 387 writer.fullFrame(offsetDelta, localTags, copyData(localTags, localData), in fullFrame() 491 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, in fullFrame() method in StackMapTable.InsertLocal 495 super.fullFrame(pos, offsetDelta, localTags, localData, stackTags, stackData); in fullFrame() 519 super.fullFrame(pos, offsetDelta, localTags2, localData2, stackTags, stackData); in fullFrame() 649 public void fullFrame(int offsetDelta, int[] localTags, int[] localData, in fullFrame() method in StackMapTable.Writer [all …]
|
/external/proguard/src/proguard/preverify/ |
D | CodePreverifier.java | 507 FullFrame fullFrame = (FullFrame)stackMapFrameList.get(index); in compressStackMapFrames() local 509 int variablesCount = fullFrame.variablesCount; in compressStackMapFrames() 510 VerificationType[] variables = fullFrame.variables; in compressStackMapFrames() 511 int stackCount = fullFrame.stackCount; in compressStackMapFrames() 512 VerificationType[] stack = fullFrame.stack; in compressStackMapFrames() 516 StackMapFrame compressedFrame = fullFrame; in compressStackMapFrames() 573 int offset = fullFrame.u2offsetDelta; in compressStackMapFrames() 578 previousVariablesCount = fullFrame.variablesCount; in compressStackMapFrames() 579 previousVariableTypes = fullFrame.variables; in compressStackMapFrames()
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassCleaner.java | 273 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 275 clean(fullFrame); in visitFullFrame() 277 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 278 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
D | ClassPrinter.java | 832 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 834 print(visitorInfo(fullFrame) + in visitFullFrame() 838 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 842 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
/external/proguard/src/proguard/classfile/io/ |
D | ProgramClassReader.java | 687 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 689 fullFrame.u2offsetDelta = dataInput.readUnsignedShort(); in visitFullFrame() 692 fullFrame.variablesCount = dataInput.readUnsignedShort(); in visitFullFrame() 693 fullFrame.variables = new VerificationType[fullFrame.variablesCount]; in visitFullFrame() 694 for (int index = 0; index < fullFrame.variablesCount; index++) in visitFullFrame() 698 fullFrame.variables[index] = verificationType; in visitFullFrame() 702 fullFrame.stackCount = dataInput.readUnsignedShort(); in visitFullFrame() 703 fullFrame.stack = new VerificationType[fullFrame.stackCount]; in visitFullFrame() 704 for (int index = 0; index < fullFrame.stackCount; index++) in visitFullFrame() 708 fullFrame.stack[index] = verificationType; in visitFullFrame()
|
D | ProgramClassWriter.java | 781 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 783 dataOutput.writeShort(fullFrame.u2offsetDelta); in visitFullFrame() 786 dataOutput.writeShort(fullFrame.variablesCount); in visitFullFrame() 787 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 790 dataOutput.writeShort(fullFrame.stackCount); in visitFullFrame() 791 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
D | StackMapFrameVisitor.java | 39 …( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); in visitFullFrame() argument
|
/external/proguard/src/proguard/classfile/editor/ |
D | CodeAttributeComposer.java | 648 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 651 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame); in visitFullFrame() 654 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 655 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
D | ConstantPoolShrinker.java | 399 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 402 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 403 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
D | ConstantPoolRemapper.java | 546 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 549 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 550 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
D | CodeAttributeEditor.java | 967 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 970 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame); in visitFullFrame() 973 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 974 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
/external/proguard/src/proguard/shrink/ |
D | UsageMarker.java | 870 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 873 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame() 874 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this); in visitFullFrame()
|
/external/proguard/src/proguard/classfile/util/ |
D | SimplifiedVisitor.java | 665 …FullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) in visitFullFrame() argument 667 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame); in visitFullFrame()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | MapMaker.java | 393 writer.fullFrame(offsetDelta, ltags, ldata, stags, sdata); in toStackMapBody()
|