Home
last modified time | relevance | path

Searched refs:typeTable (Results 1 – 4 of 4) sorted by relevance

/external/mockito/cglib-and-asm/src/org/mockito/asm/
DClassWriter.java291 Item[] typeTable; field in ClassWriter
1213 if (typeTable == null) { in addType()
1214 typeTable = new Item[16]; in addType()
1216 if (typeCount == typeTable.length) { in addType()
1217 Item[] newTable = new Item[2 * typeTable.length]; in addType()
1218 System.arraycopy(typeTable, 0, newTable, 0, typeTable.length); in addType()
1219 typeTable = newTable; in addType()
1221 typeTable[typeCount] = result; in addType()
1241 String t = typeTable[type1].strVal1; in getMergedType()
1242 String u = typeTable[type2].strVal1; in getMergedType()
DClassReader.java1401 int[] typeTable = null; in accept() local
1405 typeTable = new int[k]; in accept()
1407 typeTable[--k] = w + 6; // signature in accept()
1408 typeTable[--k] = readUnsignedShort(w + 8); // index in accept()
1409 typeTable[--k] = readUnsignedShort(w); // start in accept()
1420 if (typeTable != null) { in accept()
1421 for (int a = 0; a < typeTable.length; a += 3) { in accept()
1422 if (typeTable[a] == start in accept()
1423 && typeTable[a + 1] == index) in accept()
1425 vsignature = readUTF8(typeTable[a + 2], c); in accept()
DMethodWriter.java1715 .putShort(cw.newClass(cw.typeTable[v].strVal1));
1718 stackMap.putByte(8).putShort(cw.typeTable[v].intVal);
1731 buf.append(cw.typeTable[t & Frame.BASE_VALUE].strVal1);
DFrame.java756 String type = cw.typeTable[t & BASE_VALUE].strVal1; in init()