Searched refs:stackMapFrame (Results 1 - 9 of 9) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/
H A DStackMapAttribute.java84 FullFrame stackMapFrame = stackMapFrames[index];
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
H A DStackMapTableAttribute.java84 StackMapFrame stackMapFrame = stackMapFrames[index];
88 offset += stackMapFrame.getOffsetDelta() + (index == 0 ? 0 : 1);
90 stackMapFrame.accept(clazz, method, codeAttribute, offset, stackMapFrameVisitor);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java400 FullFrame stackMapFrame = new FullFrame();
401 this.visitFullFrame(clazz, method, codeAttribute, index, stackMapFrame);
402 stackMapAttribute.stackMapFrames[index] = stackMapFrame;
415 StackMapFrame stackMapFrame = createStackMapFrame();
416 stackMapFrame.accept(clazz, method, codeAttribute, 0, this);
417 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame;
H A DProgramClassWriter.java480 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
483 dataOutput.writeByte(stackMapFrame.getTag());
486 stackMapFrame.accept(clazz, method, codeAttribute, offset, stackMapFrameBodyWriter);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java501 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
517 stackMapFrame.u2offsetDelta = offsetDelta;
H A DConstantPoolRemapper.java473 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {} argument
H A DCodeAttributeEditor.java838 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
854 stackMapFrame.u2offsetDelta = offsetDelta;
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java706 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {} argument
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java529 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument

Completed in 325 milliseconds