HomeSort by relevance Sort by last modified time
    Searched full:sorter (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/junit/src/main/java/org/junit/runner/manipulation/
Sortable.java 14 * Sorts the tests using <code>sorter</code>
16 * @param sorter the {@link Sorter} to use for sorting the tests
18 public void sort(Sorter sorter);
Sorter.java 8 * A <code>Sorter</code> orders tests. In general you will not need
9 * to use a <code>Sorter</code> directly. Instead, use {@link org.junit.runner.Request#sortWith(Comparator)}.
13 public class Sorter implements Comparator<Description> {
15 * NULL is a <code>Sorter</code> that leaves elements in an undefined order
17 public static final Sorter NULL = new Sorter(new Comparator<Description>() {
26 * Creates a <code>Sorter</code> that uses <code>comparator</code>
31 public Sorter(Comparator<Description> comparator) {
package-info.java 2 * Provides classes to {@link org.junit.runner.manipulation.Filter filter} or {@link org.junit.runner.manipulation.Sorter sort} tests.
  /external/mockito/src/test/java/org/mockitousage/matchers/
GenericMatchersTest.java 26 @Mock Foo sorter; field in class:GenericMatchersTest
31 when(sorter.convertDate(new Date())).thenReturn("one");
32 when(sorter.convertDate((Date) anyObject())).thenReturn("two");
35 when(sorter.sort(ArgumentMatchers.<String>anyList())).thenReturn(null);
  /external/doclava/src/com/google/doclava/
Sorter.java 19 public class Sorter implements Comparable {
23 public Sorter(String l, Object d) {
29 return label.compareToIgnoreCase(((Sorter) other).label);
  /external/junit/src/main/java/org/junit/internal/requests/
SortingRequest.java 8 import org.junit.runner.manipulation.Sorter;
22 new Sorter(comparator).apply(runner);
  /external/junit/src/main/java/junit/framework/
JUnit4TestAdapter.java 14 import org.junit.runner.manipulation.Sorter;
83 public void sort(Sorter sorter) {
84 sorter.apply(fRunner);
  /external/vogar/src/vogar/target/junit/
ErrorRunner.java 23 import org.junit.runner.manipulation.Sorter;
68 public void sort(Sorter sorter) {
StatementRunner.java 26 import org.junit.runner.manipulation.Sorter;
66 public void sort(Sorter sorter) {
JUnitTargetRunner.java 23 import org.junit.runner.manipulation.Sorter;
37 private static final Sorter DESCRIPTION_SORTER =
38 new Sorter(DescriptionComparator.getInstance());
  /external/junit/src/main/java/org/junit/internal/runners/
JUnit4ClassRunner.java 17 import org.junit.runner.manipulation.Sorter;
136 public void sort(final Sorter sorter) {
139 return sorter.compare(methodDescription(o1), methodDescription(o2));
JUnit38ClassRunner.java 17 import org.junit.runner.manipulation.Sorter;
166 public void sort(Sorter sorter) {
169 adapter.sort(sorter);
  /external/replicaisland/src/com/replica/replicaisland/
Sorter.java 21 public abstract class Sorter<Type> {
StandardSorter.java 22 public class StandardSorter<T> extends Sorter {
  /system/extras/iotop/
iotop.cpp 55 using Sorter = std::function<void(std::vector<TaskStatistics>&)>;
56 static Sorter GetSorter(const std::string& field) {
81 static const std::map<std::string, Sorter> sorters{
106 Sorter sorter = GetSorter("total"); local
143 sorter = GetSorter(optarg);
144 if (sorter == nullptr) {
221 sorter(stats);
  /libcore/ojluni/src/main/java/java/util/
ArraysParallelSortHelpers.java 34 * contain the Sorter and Merger implementations for that type:
36 * Sorter classes based mainly on CilkSort
53 * Merger classes perform merging for Sorter. They are structured
113 static final class Sorter<T> extends CountedCompleter<Void> {
118 Sorter(CountedCompleter<?> par, T[] a, T[] w, int base, int size,
137 new Sorter<T>(rc, a, w, b+u, n-u, wb+u, g, c).fork();
138 new Sorter<T>(rc, a, w, b+h, q, wb+h, g, c).fork();;
141 new Sorter<T>(bc, a, w, b+q, h-q, wb+q, g, c).fork();
235 static final class Sorter extends CountedCompleter<Void> {
239 Sorter(CountedCompleter<?> par, byte[] a, byte[] w, int base
    [all...]
  /packages/providers/DownloadProvider/ui/res/values-da/
strings.xml 21 <string name="download_title_sorted_by_size" msgid="1417193166677094813">"Downloads ? sorter efter størrelse"</string>
24 <string name="button_sort_by_size" msgid="7331549713691146251">"Sorter efter størrelse"</string>
25 <string name="button_sort_by_date" msgid="8800842892684101528">"Sorter efter dato"</string>
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTGeometry.h 25 @brief Triangle sorter
  /external/junit/src/main/java/org/junit/runners/
ParentRunner.java 33 import org.junit.runner.manipulation.Sorter;
399 public void sort(Sorter sorter) {
402 sorter.apply(each);
405 Collections.sort(sortedChildren, comparator(sorter));
437 private Comparator<? super T> comparator(final Sorter sorter) {
440 return sorter.compare(describeChild(o1), describeChild(o2));
  /packages/providers/DownloadProvider/ui/res/values-nb/
strings.xml 24 <string name="button_sort_by_size" msgid="7331549713691146251">"Sorter etter størrelse"</string>
25 <string name="button_sort_by_date" msgid="8800842892684101528">"Sorter etter dato"</string>
  /external/clang/lib/Format/
SortJavaScriptImports.h 11 /// \brief This file implements a sorter for JavaScript ES6 imports.
  /external/jsr330/lib/
junit-src.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/3.8.1/
junit-3.8.1-sources.jar 
  /prebuilts/go/darwin-x86/src/net/http/
header.go 152 kvs, sorter := h.sortedKeyValues(exclude)
159 headerSorterPool.Put(sorter)
165 headerSorterPool.Put(sorter)
  /prebuilts/go/linux-x86/src/net/http/
header.go 152 kvs, sorter := h.sortedKeyValues(exclude)
159 headerSorterPool.Put(sorter)
165 headerSorterPool.Put(sorter)

Completed in 1314 milliseconds

1 2 3 4 5 6