Searched defs:sameZeroFrame (Results 1 - 6 of 6) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DStackMapFrameVisitor.java35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); argument
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java245 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame) argument
247 clean(sameZeroFrame);
H A DClassPrinter.java791 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame) argument
793 println(visitorInfo(sameZeroFrame) +
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java643 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame) argument
645 if (sameZeroFrame.getTag() == StackMapFrame.SAME_ZERO_FRAME_EXTENDED)
647 sameZeroFrame.u2offsetDelta = dataInput.readUnsignedShort();
H A DProgramClassWriter.java745 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame) argument
747 if (sameZeroFrame.getTag() == StackMapFrame.SAME_ZERO_FRAME_EXTENDED)
749 dataOutput.writeShort(sameZeroFrame.u2offsetDelta);
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java641 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame) argument
643 visitAnyStackMapFrame(clazz, method, codeAttribute, offset, sameZeroFrame);

Completed in 100 milliseconds