Home
last modified time | relevance | path

Searched refs:fullFrame (Results 1 – 14 of 14) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DStackMapTable.java217 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/
DCodePreverifier.java507 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/
DClassCleaner.java273 …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()
DClassPrinter.java832 …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/
DProgramClassReader.java687 …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()
DProgramClassWriter.java781 …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/
DStackMapFrameVisitor.java39 …( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); in visitFullFrame() argument
/external/proguard/src/proguard/classfile/editor/
DCodeAttributeComposer.java648 …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()
DConstantPoolShrinker.java399 …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()
DConstantPoolRemapper.java546 …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()
DCodeAttributeEditor.java967 …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/
DUsageMarker.java870 …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/
DSimplifiedVisitor.java665 …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/
DMapMaker.java393 writer.fullFrame(offsetDelta, ltags, ldata, stags, sdata); in toStackMapBody()