Searched defs:fullFrame (Results 1 - 11 of 11) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DStackMapFrameVisitor.java39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame); argument
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java220 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
222 clean(fullFrame);
224 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
225 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
H A DClassPrinter.java734 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
736 print(visitorInfo(fullFrame) +
740 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
744 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java217 pos = fullFrame(pos);
312 private int fullFrame(int pos) throws BadBytecode { method in class:StackMapTable.Walker
322 fullFrame(pos, offset, localsTags, localsData, itemsTags, itemsData);
338 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.Walker
385 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.SimpleCopy
387 writer.fullFrame(offsetDelta, localTags, copyData(localTags, localData),
491 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.InsertLocal
495 super.fullFrame(pos, offsetDelta, localTags, localData, stackTags, stackData);
519 super.fullFrame(pos, offsetDelta, localTags2, localData2, stackTags, stackData);
649 public void fullFrame(in method in class:StackMapTable.Writer
738 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.Printer
867 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.Shifter
923 public void fullFrame(int pos, int offsetDelta, int[] localTags, int[] localData, method in class:StackMapTable.NewRemover
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java541 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
544 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame);
547 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
548 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
H A DCodeAttributeEditor.java878 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
881 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame);
884 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
885 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
H A DConstantPoolRemapper.java490 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
493 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
494 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java598 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
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++)
609 fullFrame.variables[index] = verificationType;
613 fullFrame.stackCount = dataInput.readUnsignedShort();
614 fullFrame.stack = new VerificationType[fullFrame
[all...]
H A DProgramClassWriter.java598 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
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/shrink/
H A DUsageMarker.java723 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
726 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
727 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java559 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) argument
561 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, fullFrame);

Completed in 896 milliseconds