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

1 2

  /external/junit/src/org/junit/runner/manipulation/
Sortable.java 12 * Sorts the tests using <code>sorter</code>
13 * @param sorter the {@link Sorter} to use for sorting the tests
15 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 Sorter NULL= new Sorter(new Comparator<Description>() {
24 * Creates a <code>Sorter</code> that uses <code>comparator</code>
28 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);
ClassInfo.java     [all...]
  /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/org/junit/internal/requests/
SortingRequest.java 8 import org.junit.runner.manipulation.Sorter;
22 new Sorter(fComparator).apply(runner);
  /external/chromium_org/chrome/browser/download/
download_query.cc 326 // AddSorter() creates a Sorter and pushes it onto sorters_. A Sorter is a
333 // the sorter's direction in order to indicate to std::partial_sort whether the
338 struct DownloadQuery::Sorter {
343 static Sorter Build(DownloadQuery::SortDirection adirection,
345 return Sorter(adirection, base::Bind(&Compare<ValueType>,
349 Sorter(DownloadQuery::SortDirection adirection,
352 sorter(asorter) {
354 ~Sorter() {}
357 SortType sorter; member in struct:DownloadQuery::Sorter
    [all...]
download_query.h 109 // Adds a new sorter of type |type| with direction |direction|. After
111 // sorter from the first call to Sort(), secondarily by the sorter from the
136 struct Sorter;
139 typedef std::vector<Sorter> SorterVector;
  /frameworks/base/test-runner/src/junit/runner/
Sorter.java 11 public class Sorter {
  /external/junit/src/junit/framework/
JUnit4TestAdapter.java 14 import org.junit.runner.manipulation.Sorter;
82 public void sort(Sorter sorter) {
83 sorter.apply(fRunner);
  /external/junit/src/org/junit/internal/runners/
JUnit4ClassRunner.java 17 import org.junit.runner.manipulation.Sorter;
134 public void sort(final Sorter sorter) {
137 return sorter.compare(methodDescription(o1), methodDescription(o2));
JUnit38ClassRunner.java 17 import org.junit.runner.manipulation.Sorter;
144 public void sort(Sorter sorter) {
147 adapter.sort(sorter);
  /external/junit/src/org/junit/runners/
ParentRunner.java 29 import org.junit.runner.manipulation.Sorter;
54 private Sorter fSorter= Sorter.NULL;
331 public void sort(Sorter sorter) {
332 fSorter= sorter;
  /frameworks/testing/support/src/android/support/test/internal/runner/junit3/
JUnit38ClassRunner.java 18 import org.junit.runner.manipulation.Sorter;
173 public void sort(Sorter sorter) {
176 adapter.sort(sorter);
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 37 template <class T, class Sorter, unsigned InlineCapacity>
39 Sorter Precedes;
43 PriorityQueue(const Sorter &Precedes) : Precedes(Precedes) {}
  /cts/tools/vm-tests-tf/lib/
junit.jar 
  /external/dexmaker/lib/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /prebuilts/devtools/adt/lib/
junit-3.8.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/junit/junit/3.8.1/
junit-3.8.1.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/3.8.1/
junit-3.8.1.jar 

Completed in 3617 milliseconds

1 2