Home
last modified time | relevance | path

Searched refs:got (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
DCipherInputStream1Test.java114 int got = cis.read(result); // the number of got bytes in testRead2() local
116 for (int j = 0; j < got - ind; j++) { in testRead2()
121 if (got == expected) { in testRead2()
123 } else if (got > expected) { in testRead2()
127 ind = got; in testRead2()
128 got += cis.read(result); in testRead2()
155 int got = skip + cis.read(result, 0, 1); // the number of got bytes in testRead3() local
157 for (int j = 0; j < got - ind; j++) { in testRead3()
161 if (got == expected) { in testRead3()
163 } else if (got > expected) { in testRead3()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandleAccessorsTest.java99 final byte got; in getByte()
101 got = (byte)m.invokeExact(); in getByte()
103 got = (byte)m.invokeExact(v); in getByte()
105 assertTrue(got == value); in getByte()
142 final char got; in getChar() local
144 got = (char)m.invokeExact(); in getChar()
146 got = (char)m.invokeExact(v); in getChar()
148 assertTrue(got == value); in getChar()
185 final short got = (v == null) ? (short)m.invokeExact() : (short)m.invokeExact(v); in getShort() local
186 assertTrue(got == value); in getShort()
[all …]
/libcore/benchmarks/src/benchmarks/
DReferenceBenchmark.java121 int got = count.get(); in timeFinalization() local
122 if (n != got) { in timeFinalization()
124 String.format("Only %i of %i objects finalized?", got, n)); in timeFinalization()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DFloatTest.java874 Float got = Float.valueOf("432.1235"); in test_valueOfLjava_lang_String() local
875 assertTrue("Incorrect float returned--wanted: " + wanted + " but got: " + got, got in test_valueOfLjava_lang_String()
879 got = Float.valueOf("0"); in test_valueOfLjava_lang_String()
880 assertTrue("Incorrect float returned--wanted: " + wanted + " but got: " + got, got in test_valueOfLjava_lang_String()
884 got = Float.valueOf("-1212.3232"); in test_valueOfLjava_lang_String()
885 assertTrue("Incorrect float returned--wanted: " + wanted + " but got: " + got, got in test_valueOfLjava_lang_String()
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidDeflateTest.java136 int want = -1, got; in compress() local
175 int want = -1, got; in expand() local
/libcore/expectations/
Dknownfailures.txt384 executed: got NullPointerException.Test passes on RI.",