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

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DFrameNode.java91 * @param nLocal number of local variables of this stack map frame.
104 final int nLocal,
114 this.local = asList(nLocal, local);
118 this.local = asList(nLocal, local);
121 this.local = asList(nLocal, local);
102 FrameNode( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DMethodNode.java233 final int nLocal,
238 instructions.add(new FrameNode(type, nLocal, local == null
231 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DMethodAdapter.java85 final int nLocal,
90 mv.visitFrame(type, nLocal, local, nStack, stack);
83 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DMethodVisitor.java122 * locals are defined (<code>nLocal</code> is 1, 2 or 3 and
136 * @param nLocal the number of local variables in the visited frame.
153 int nLocal,
151 visitFrame( int type, int nLocal, Object[] local, int nStack, Object[] stack) argument
H A DMethodWriter.java269 * values. In summary frame[0] = offset, frame[1] = nLocal, frame[2] =
270 * nStack, frame[3] = nLocal. All types are encoded as integers, with the
542 final int nLocal,
552 startFrame(code.length, nLocal, nStack);
553 for (int i = 0; i < nLocal; ++i) {
591 .putShort(nLocal);
592 for (int i = 0; i < nLocal; ++i) {
601 stackMap.putByte(SAME_FRAME_EXTENDED + nLocal)
603 for (int i = 0; i < nLocal; ++i) {
608 stackMap.putByte(SAME_FRAME_EXTENDED - nLocal)
540 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
1578 startFrame(final int offset, final int nLocal, final int nStack) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DASMifierMethodVisitor.java93 final int nLocal,
102 declareFrameTypes(nLocal, local);
109 buf.append(nLocal).append(", new Object[] {");
110 appendFrameTypes(nLocal, local);
116 declareFrameTypes(nLocal, local);
118 .append(nLocal)
120 appendFrameTypes(nLocal, local);
125 .append(nLocal)
91 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DTraceMethodVisitor.java169 final int nLocal,
181 appendFrameTypes(nLocal, local);
188 appendFrameTypes(nLocal, local);
192 buf.append("CHOP ").append(nLocal);
206 mv.visitFrame(type, nLocal, local, nStack, stack);
167 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DCheckMethodAdapter.java357 final int nLocal,
391 if (nLocal > mLocal) {
392 throw new IllegalArgumentException("Invalid nLocal=" + nLocal
401 if (nLocal > 0 && (local == null || local.length < nLocal)) {
402 throw new IllegalArgumentException("Array local[] is shorter than nLocal");
404 for (int i = 0; i < nLocal; ++i) {
415 mv.visitFrame(type, nLocal, local, nStack, stack);
355 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DMethodVisitorTee.java29 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
30 mv1.visitFrame(type, nLocal, local, nStack, stack);
31 mv2.visitFrame(type, nLocal, local, nStack, stack);
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/vogar/lib/
H A Dmockito-all-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ org/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c52549 u16 nLocal; /* Amount of payload held locally, not on overflow */ member in struct:CellInfo
155292 int nLocal; /* Bytes of local payload */ member in struct:StatCell
155502 int nLocal; local
155570 int nLocal; /* Bytes of payload stored locally */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c52567 u16 nLocal; /* Amount of payload held locally, not on overflow */ member in struct:CellInfo
155322 int nLocal; /* Bytes of local payload */ member in struct:StatCell
155532 int nLocal; local
155600 int nLocal; /* Bytes of payload stored locally */ local
[all...]

Completed in 634 milliseconds