Searched refs:specials1 (Results 1 – 2 of 2) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | Arrays2Test.java | 131 …double[] specials1 = new double[] { Double.NaN, Double.MAX_VALUE, Double.MIN_VALUE, 0d, -0d, Doubl… in test_sort$D() local 135 Arrays.sort(specials1); in test_sort$D() 136 Object[] print1 = new Object[specials1.length]; in test_sort$D() 137 for (int i = 0; i < specials1.length; i++) { in test_sort$D() 138 print1[i] = new Double(specials1[i]); in test_sort$D() 141 Arrays.equals(specials1, answer)); in test_sort$D() 167 …float[] specials1 = new float[] { Float.NaN, Float.MAX_VALUE, Float.MIN_VALUE, 0f, -0f, Float.POSI… in test_sort$F() local 171 Arrays.sort(specials1); in test_sort$F() 172 Object[] print1 = new Object[specials1.length]; in test_sort$F() 173 for (int i = 0; i < specials1.length; i++) { in test_sort$F() [all …]
|
D | ArraysTest.java | 1142 double[] specials1 = new double[] { Double.NaN, Double.MAX_VALUE, in test_sort$D() local 1156 Arrays.sort(specials1); in test_sort$D() 1157 Object[] print1 = new Object[specials1.length]; in test_sort$D() 1158 for (int i = 0; i < specials1.length; i++) in test_sort$D() 1159 print1[i] = new Double(specials1[i]); in test_sort$D() 1161 Arrays.equals(specials1, answer)); in test_sort$D() 1235 float[] specials1 = new float[] { Float.NaN, Float.MAX_VALUE, in test_sort$F() local 1245 Arrays.sort(specials1); in test_sort$F() 1246 Object[] print1 = new Object[specials1.length]; in test_sort$F() 1247 for (int i = 0; i < specials1.length; i++) in test_sort$F() [all …]
|