Searched refs:specials2 (Results 1 – 2 of 2) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | Arrays2Test.java | 132 …double[] specials2 = new double[] { 0d, Double.POSITIVE_INFINITY, -0d, Double.NEGATIVE_INFINITY, D… in test_sort$D() local 143 Arrays.sort(specials2); in test_sort$D() 144 Object[] print2 = new Object[specials2.length]; in test_sort$D() 145 for (int i = 0; i < specials2.length; i++) { in test_sort$D() 146 print2[i] = new Double(specials2[i]); in test_sort$D() 149 Arrays.equals(specials2, answer)); in test_sort$D() 168 …float[] specials2 = new float[] { 0f, Float.POSITIVE_INFINITY, -0f, Float.NEGATIVE_INFINITY, Float… in test_sort$F() local 179 Arrays.sort(specials2); in test_sort$F() 180 Object[] print2 = new Object[specials2.length]; in test_sort$F() 181 for (int i = 0; i < specials2.length; i++) { in test_sort$F() [all …]
|
D | ArraysTest.java | 1145 double[] specials2 = new double[] { 0d, Double.POSITIVE_INFINITY, -0d, in test_sort$D() local 1163 Arrays.sort(specials2); in test_sort$D() 1164 Object[] print2 = new Object[specials2.length]; in test_sort$D() 1165 for (int i = 0; i < specials2.length; i++) in test_sort$D() 1166 print2[i] = new Double(specials2[i]); in test_sort$D() 1168 Arrays.equals(specials2, answer)); in test_sort$D() 1238 float[] specials2 = new float[] { 0f, Float.POSITIVE_INFINITY, -0f, in test_sort$F() local 1252 Arrays.sort(specials2); in test_sort$F() 1253 Object[] print2 = new Object[specials2.length]; in test_sort$F() 1254 for (int i = 0; i < specials2.length; i++) in test_sort$F() [all …]
|