Home
last modified time | relevance | path

Searched refs:testSort (Results 1 – 15 of 15) sorted by relevance

/external/guava/guava-tests/test/com/google/common/primitives/
DUnsignedLongsTest.java113 public void testSort() { in testSort() method in UnsignedLongsTest
114 testSort(new long[] {}, new long[] {}); in testSort()
115 testSort(new long[] {2}, new long[] {2}); in testSort()
116 testSort(new long[] {2, 1, 0}, new long[] {0, 1, 2}); in testSort()
117 testSort(new long[] {2, GREATEST, 1, LEAST}, new long[] {LEAST, 1, 2, GREATEST}); in testSort()
120 static void testSort(long[] input, long[] expected) { in testSort() method in UnsignedLongsTest
126 static void testSort(long[] input, int from, int to, long[] expected) { in testSort() method in UnsignedLongsTest
133 testSort(new long[] {}, 0, 0, new long[] {}); in testSortIndexed()
134 testSort(new long[] {2}, 0, 1, new long[] {2}); in testSortIndexed()
135 testSort(new long[] {2, 1, 0}, 0, 2, new long[] {1, 2, 0}); in testSortIndexed()
[all …]
DUnsignedIntsTest.java161 public void testSort() { in testSort() method in UnsignedIntsTest
162 testSort(new int[] {}, new int[] {}); in testSort()
163 testSort(new int[] {2}, new int[] {2}); in testSort()
164 testSort(new int[] {2, 1, 0}, new int[] {0, 1, 2}); in testSort()
165 testSort(new int[] {2, GREATEST, 1, LEAST}, new int[] {LEAST, 1, 2, GREATEST}); in testSort()
168 static void testSort(int[] input, int[] expected) { in testSort() method in UnsignedIntsTest
174 static void testSort(int[] input, int from, int to, int[] expected) { in testSort() method in UnsignedIntsTest
181 testSort(new int[] {}, 0, 0, new int[] {}); in testSortIndexed()
182 testSort(new int[] {2}, 0, 1, new int[] {2}); in testSortIndexed()
183 testSort(new int[] {2, 1, 0}, 0, 2, new int[] {1, 2, 0}); in testSortIndexed()
[all …]
DUnsignedBytesTest.java308 public void testSort() { in testSort() method in UnsignedBytesTest
309 testSort(new byte[] {}, new byte[] {}); in testSort()
310 testSort(new byte[] {2}, new byte[] {2}); in testSort()
311 testSort(new byte[] {2, 1, 0}, new byte[] {0, 1, 2}); in testSort()
312 testSort(new byte[] {2, GREATEST, 1, LEAST}, new byte[] {LEAST, 1, 2, GREATEST}); in testSort()
315 static void testSort(byte[] input, byte[] expected) { in testSort() method in UnsignedBytesTest
321 static void testSort(byte[] input, int from, int to, byte[] expected) { in testSort() method in UnsignedBytesTest
328 testSort(new byte[] {}, 0, 0, new byte[] {}); in testSortIndexed()
329 testSort(new byte[] {2}, 0, 1, new byte[] {2}); in testSortIndexed()
330 testSort(new byte[] {2, 1, 0}, 0, 2, new byte[] {1, 2, 0}); in testSortIndexed()
[all …]
/external/guava/android/guava-tests/test/com/google/common/primitives/
DUnsignedLongsTest.java113 public void testSort() { in testSort() method in UnsignedLongsTest
114 testSort(new long[] {}, new long[] {}); in testSort()
115 testSort(new long[] {2}, new long[] {2}); in testSort()
116 testSort(new long[] {2, 1, 0}, new long[] {0, 1, 2}); in testSort()
117 testSort(new long[] {2, GREATEST, 1, LEAST}, new long[] {LEAST, 1, 2, GREATEST}); in testSort()
120 static void testSort(long[] input, long[] expected) { in testSort() method in UnsignedLongsTest
126 static void testSort(long[] input, int from, int to, long[] expected) { in testSort() method in UnsignedLongsTest
133 testSort(new long[] {}, 0, 0, new long[] {}); in testSortIndexed()
134 testSort(new long[] {2}, 0, 1, new long[] {2}); in testSortIndexed()
135 testSort(new long[] {2, 1, 0}, 0, 2, new long[] {1, 2, 0}); in testSortIndexed()
[all …]
DUnsignedIntsTest.java161 public void testSort() { in testSort() method in UnsignedIntsTest
162 testSort(new int[] {}, new int[] {}); in testSort()
163 testSort(new int[] {2}, new int[] {2}); in testSort()
164 testSort(new int[] {2, 1, 0}, new int[] {0, 1, 2}); in testSort()
165 testSort(new int[] {2, GREATEST, 1, LEAST}, new int[] {LEAST, 1, 2, GREATEST}); in testSort()
168 static void testSort(int[] input, int[] expected) { in testSort() method in UnsignedIntsTest
174 static void testSort(int[] input, int from, int to, int[] expected) { in testSort() method in UnsignedIntsTest
181 testSort(new int[] {}, 0, 0, new int[] {}); in testSortIndexed()
182 testSort(new int[] {2}, 0, 1, new int[] {2}); in testSortIndexed()
183 testSort(new int[] {2, 1, 0}, 0, 2, new int[] {1, 2, 0}); in testSortIndexed()
[all …]
DUnsignedBytesTest.java308 public void testSort() { in testSort() method in UnsignedBytesTest
309 testSort(new byte[] {}, new byte[] {}); in testSort()
310 testSort(new byte[] {2}, new byte[] {2}); in testSort()
311 testSort(new byte[] {2, 1, 0}, new byte[] {0, 1, 2}); in testSort()
312 testSort(new byte[] {2, GREATEST, 1, LEAST}, new byte[] {LEAST, 1, 2, GREATEST}); in testSort()
315 static void testSort(byte[] input, byte[] expected) { in testSort() method in UnsignedBytesTest
321 static void testSort(byte[] input, int from, int to, byte[] expected) { in testSort() method in UnsignedBytesTest
328 testSort(new byte[] {}, 0, 0, new byte[] {}); in testSortIndexed()
329 testSort(new byte[] {2}, 0, 1, new byte[] {2}); in testSortIndexed()
330 testSort(new byte[] {2, 1, 0}, 0, 2, new byte[] {1, 2, 0}); in testSortIndexed()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DNodeComparatorTest.java32 public void testSort() { in testSort() method in NodeComparatorTest
/external/nullaway/sample/src/main/java/com/uber/mylib/
DLambdas.java64 static void testSort(List<Integer> intList, List<Size> sizeList) { in testSort() method in Lambdas
/external/nullaway/nullaway/src/test/resources/com/uber/nullaway/testdata/
DNullAwayJava8NegativeCases.java88 static void testSort(List<Integer> intList, List<Size> sizeList) { in testSort() method in NullAwayJava8NegativeCases
/external/tensorflow/tensorflow/compiler/tests/
Dsort_ops_test.py70 def testSort(self): member in XlaSortOpTest
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16_test.py226 def testSort(self): member in Bfloat16Test
/external/tensorflow/tensorflow/python/training/tracking/
Ddata_structures_test.py319 def testSort(self): member in ListWrapperTest
/external/python/pyasn1/tests/type/
Dtest_univ.py1150 def testSort(self): member in SequenceOf
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client_test.py1408 def testSort(self): member in TestFactory.SingleOpTest
/external/autotest/server/cros/tradefed/tradefed_utils_unittest_data/
DCtsWidgetTestCases.txt332 …02:44:13 D/ModuleListener: ModuleListener.testStarted(android.widget.cts.ArrayAdapterTest#testSort)
333 …:44:13 D/ModuleListener: ModuleListener.testEnded(android.widget.cts.ArrayAdapterTest#testSort, {})
334 …CtsWidgetTestCases chromeos2-row4-rack6-host8:22] android.widget.cts.ArrayAdapterTest#testSort pass