Searched defs:nLocal (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java152 * locals are defined (<code>nLocal</code> is 1, 2 or 3 and
166 * @param nLocal the number of local variables in the visited frame.
183 int nLocal,
181 visitFrame( int type, int nLocal, Object[] local, int nStack, Object[] stack) argument
H A DMethodWriter.java299 * values. In summary frame[0] = offset, frame[1] = nLocal, frame[2] =
300 * nStack, frame[3] = nLocal. All types are encoded as integers, with the
572 final int nLocal,
582 startFrame(code.length, nLocal, nStack);
583 for (int i = 0; i < nLocal; ++i) {
621 .putShort(nLocal);
622 for (int i = 0; i < nLocal; ++i) {
631 stackMap.putByte(SAME_FRAME_EXTENDED + nLocal)
633 for (int i = 0; i < nLocal; ++i) {
638 stackMap.putByte(SAME_FRAME_EXTENDED - nLocal)
570 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
1608 startFrame(final int offset, final int nLocal, final int nStack) argument
[all...]

Completed in 32 milliseconds