Home | History | Annotate | Download | only in pm

Lines Matching refs:temp

82         byte[] temp = new byte[TEST_STRING1.length];
89 assertEquals(length, is.read(temp, 0, temp.length));
91 System.arraycopy(temp, 0, actual, 0, length);
94 assertEquals(-1, is.read(temp, 0, temp.length));
122 byte[] temp = new byte[TEST_STRING1.length + 10];
124 assertEquals(TEST_STRING1.length, is.read(temp, 0, TEST_STRING1.length + 10));
127 System.arraycopy(temp, 0, actual, 0, actual.length);
132 byte[] temp = new byte[TEST_STRING1.length];
139 assertEquals(length, is.read(temp));
141 System.arraycopy(temp, 0, actual, 0, length);
144 assertEquals(-1, is.read(temp));