Searched refs:stackMapFrame (Results 1 - 10 of 10) 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.java436 FullFrame stackMapFrame = new FullFrame();
437 visitFullFrame(clazz, method, codeAttribute, index, stackMapFrame);
438 stackMapAttribute.stackMapFrames[index] = stackMapFrame;
451 StackMapFrame stackMapFrame = createStackMapFrame();
452 stackMapFrame.accept(clazz, method, codeAttribute, 0, this);
453 stackMapTableAttribute.stackMapFrames[index] = stackMapFrame;
H A DProgramClassWriter.java525 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
528 dataOutput.writeByte(stackMapFrame.getTag());
531 stackMapFrame.accept(clazz, method, codeAttribute, offset, stackMapFrameBodyWriter);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java575 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
591 stackMapFrame.u2offsetDelta = offsetDelta;
H A DConstantPoolShrinker.java372 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {} argument
H A DCodeAttributeEditor.java914 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument
930 stackMapFrame.u2offsetDelta = offsetDelta;
H A DConstantPoolRemapper.java518 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {} argument
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java832 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) {} argument
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java553 public void visitAnyStackMapFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrame stackMapFrame) argument

Completed in 100 milliseconds