Java Code Examples for proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor#visitFullFrame()
The following examples show how to use
proguard.classfile.attribute.preverification.visitor.StackMapFrameVisitor#visitFullFrame() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StackMapAttribute.java From java-n-IDE-for-Android with Apache License 2.0 | 5 votes |
/** * Applies the given stack map frame visitor to all stack map frames. */ public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) { for (int index = 0; index < u2stackMapFramesCount; index++) { FullFrame stackMapFrame = stackMapFrames[index]; // We don't need double dispatching here, since there is only one // type of StackMapFrame. stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame); } }
Example 2
Source File: StackMapAttribute.java From proguard with GNU General Public License v2.0 | 5 votes |
/** * Applies the given stack map frame visitor to all stack map frames. */ public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) { for (int index = 0; index < u2stackMapFramesCount; index++) { FullFrame stackMapFrame = stackMapFrames[index]; // We don't need double dispatching here, since there is only one // type of StackMapFrame. stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame); } }
Example 3
Source File: StackMapAttribute.java From bazel with Apache License 2.0 | 5 votes |
/** * Applies the given stack map frame visitor to all stack map frames. */ public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) { for (int index = 0; index < u2stackMapFramesCount; index++) { FullFrame stackMapFrame = stackMapFrames[index]; // We don't need double dispatching here, since there is only one // type of StackMapFrame. stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame); } }
Example 4
Source File: FullFrame.java From java-n-IDE-for-Android with Apache License 2.0 | 4 votes |
public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) { stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, offset, this); }