HomeSort by relevance Sort by last modified time
    Searched refs:Sorter (Results 1 - 25 of 71) sorted by null

1 2 3

  /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) {
  /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/replicaisland/src/com/replica/replicaisland/
Sorter.java 21 public abstract class Sorter<Type> {
StandardSorter.java 22 public class StandardSorter<T> extends Sorter {
QuickSorter.java 21 public class QuickSorter<Type> extends Sorter<Type> {
ShellSorter.java 21 public class ShellSorter<Type> extends Sorter<Type> {
FixedSizeArray.java 38 private Sorter<T> mSorter;
274 public void setSorter(Sorter<T> sorter) {
275 mSorter = sorter;
  /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/vogar/src/vogar/target/junit/
JUnitTargetRunner.java 23 import org.junit.runner.manipulation.Sorter;
39 private static final Sorter DESCRIPTION_SORTER =
40 new Sorter(DescriptionComparator.getInstance());
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) {
  /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);
  /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...]
Arrays.java 485 new ArraysParallelSortHelpers.FJByte.Sorter
525 new ArraysParallelSortHelpers.FJByte.Sorter
555 new ArraysParallelSortHelpers.FJChar.Sorter
595 new ArraysParallelSortHelpers.FJChar.Sorter
625 new ArraysParallelSortHelpers.FJShort.Sorter
665 new ArraysParallelSortHelpers.FJShort.Sorter
695 new ArraysParallelSortHelpers.FJInt.Sorter
    [all...]
  /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) {
218 sorter(stats);
  /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/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));
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 36 template <class T, class Sorter, unsigned InlineCapacity>
38 Sorter Precedes;
42 PriorityQueue(const Sorter &Precedes) : Precedes(Precedes) {}
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.cpp 39 template <class T, class Sorter, unsigned InlineCapacity>
41 Sorter Precedes;
45 PriorityQueue(const Sorter &Precedes) : Precedes(Precedes) {}
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 437 JavaScriptImportSorter Sorter(*Env, Style);
438 return Sorter.process();
  /prebuilts/go/darwin-x86/src/sort/
example_multi_test.go 33 // OrderedBy returns a Sorter that sorts using the less functions, in order.
  /prebuilts/go/linux-x86/src/sort/
example_multi_test.go 33 // OrderedBy returns a Sorter that sorts using the less functions, in order.
  /cts/tools/vm-tests-tf/lib/
junit.jar 

Completed in 604 milliseconds

1 2 3