Searched refs:sort (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/openjdk7/hotspot/make/solaris/makefiles/
H A Dbuild_vm_def.sh10 | sort -u
/openjdk7/jdk/test/java/util/TimSort/
H A DSorter.java28 public void sort(Object[] array) {
29 ComparableTimSort.sort(array);
33 public void sort(Object[] array) {
34 Arrays.sort(array);
38 public abstract void sort(Object[] array); method in class:Sorter
50 s.sort(test);
/openjdk7/langtools/test/tools/javac/generics/
H A DReverseOrder.java40 Collections.sort(l, Collections.reverseOrder());
H A DExtendedRaw1.java35 public static <U, T extends U> void sort(T[] a, Comparator<U> c) { method in class:Arrays
43 Arrays.sort(oa, new Comparator() {});
/openjdk7/hotspot/make/linux/makefiles/
H A Dbuild_vm_def.sh16 | sort -u
/openjdk7/langtools/test/tools/javac/generics/inference/6638712/
H A DT6638712c.java13 <T> T sort(T[] a, Comparator<? super T> c) { return null; } method in class:T6638712c
16 sort(e, comp);
/openjdk7/langtools/make/test/
H A Dcontents.sh34 ( cd ${TOPDIR}/dist ; find . -type f -print | LANG=C sort ) > contents.tmp
/openjdk7/jdk/test/sample/mergesort/
H A DMergeSortTest.java71 Arrays.sort(copy);
72 target.sort(array);
79 target.sort(array);
85 target.sort(array);
91 target.sort(array);
/openjdk7/hotspot/agent/make/
H A Dbuild-filelist8 SORT=$MKS_HOME/sort
H A Dbuild-pkglist9 SORT=$MKS_HOME/sort
/openjdk7/langtools/test/tools/javac/generics/inference/5070671/
H A DT5070671.java40 Arrays.sort(arr, c);
50 Arrays.sort(arr, c);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java75 * The sort of the <tt>void</tt> type. See {@link #getSort getSort}.
80 * The sort of the <tt>boolean</tt> type. See {@link #getSort getSort}.
85 * The sort of the <tt>char</tt> type. See {@link #getSort getSort}.
90 * The sort of the <tt>byte</tt> type. See {@link #getSort getSort}.
95 * The sort of the <tt>short</tt> type. See {@link #getSort getSort}.
100 * The sort of the <tt>int</tt> type. See {@link #getSort getSort}.
105 * The sort of the <tt>float</tt> type. See {@link #getSort getSort}.
110 * The sort of the <tt>long</tt> type. See {@link #getSort getSort}.
115 * The sort of the <tt>double</tt> type. See {@link #getSort getSort}.
120 * The sort o
181 private final int sort; field in class:Type
210 Type(final int sort) argument
222 Type(final int sort, final char[] buf, final int off, final int len) argument
[all...]
/openjdk7/langtools/make/test/bootstrap/
H A Djavadoc.sh36 ( cd doc ; find . -type f -print | LANG=C sort) > javadoc.tmp
/openjdk7/jdk/src/share/demo/applets/SortDemo/
H A DBubbleSortAlgorithm.java43 * A bubble sort demonstration algorithm
51 void sort(int a[]) throws Exception { method in class:BubbleSortAlgorithm
/openjdk7/jdk/test/java/util/Collections/
H A DNullComparator.java41 Arrays.sort(a, null);
43 throw new Exception("Arrays.sort");
45 Arrays.sort(a, 0, 100, null);
47 throw new Exception("Arrays.sort(from, to)");
52 Collections.sort(tmp, null);
54 throw new Exception("Collections.sort");
/openjdk7/jdk/test/java/util/Arrays/
H A DSorting.java27 * @summary Exercise Arrays.sort
100 Arrays.sort(new int[] {});
101 Arrays.sort(new int[] {}, 0, 0);
104 Arrays.sort((int[]) null);
107 Arrays.sort((int[]) null, 0, 0);
111 failed("Arrays.sort(int[],fromIndex,toIndex) shouldn't " +
114 failed("Arrays.sort(int[]) shouldn't catch null array");
119 Arrays.sort(new long[] {});
120 Arrays.sort(new long[] {}, 0, 0);
123 Arrays.sort((lon
1502 private static void sort(Object object) { method in class:Sorting
[all...]
H A DFloatDoubleOrder.java29 * Now it's a total ordering. Arrays.sort(double[])
30 * and Arrays.sort(double[]) reflect the new ordering. Also,
50 Collections.sort(list);
58 Arrays.sort(unsortedDbl);
77 Collections.sort(list);
85 Arrays.sort(unsortedFlt);
96 // 6548425: Arrays.sort incorrectly sorts a double array
99 Arrays.sort(da, 1, 4);
103 Arrays.sort(fa, 1, 4);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DSWITCH.java97 sort(0, match_length - 1);
148 private final void sort(int l, int r) { method in class:SWITCH
164 if(l < j) sort(l, j);
165 if(i < r) sort(i, r);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DSortableTableModel.java58 Collections.sort(elements, comparator);
/openjdk7/jdk/test/java/lang/Boolean/
H A DMakeBooleanComparable.java45 Collections.sort(list);
/openjdk7/jdk/test/java/lang/StringCoding/
H A DCheckEncodings.sh61 cat ${TESTSRC}/locales.txt machine_locales.txt | sort | uniq > locale_union.txt
/openjdk7/jdk/test/sun/text/resources/Collator/
H A DBug4248694.java63 Arrays.sort (data, col);
H A DBug4804273.java102 Arrays.sort (data, col);
H A DBug4848897.java59 Arrays.sort (data, col);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DImplementedMethods.java68 public MethodDoc[] build(boolean sort) { argument
69 buildImplementedMethodList(sort);
88 private void buildImplementedMethodList(boolean sort) { argument
89 List<Type> intfacs = Util.getAllInterfaces(classdoc, configuration, sort);

Completed in 154 milliseconds

1234567891011>>