HomeSort by relevance Sort by last modified time
    Searched refs:sort (Results 176 - 200 of 555) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 128 std::sort(sortedFunctions.begin(), sortedFunctions.end(), functionNameCountPairComparator);
  /external/webkit/WebKitTools/Scripts/
parse-malloc-history 154 for my $callstack (sort { $callstacks{$b}{"byteCount"} <=> $callstacks{$a}{"byteCount"} } keys %callstacks) {
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uctralgo.h 447 inline void sort (Container& ctr) function in namespace:ustl
449 sort (ctr.begin(), ctr.end());
456 inline void sort (Container& ctr, Compare comp) function in namespace:ustl
458 sort (ctr.begin(), ctr.end(), comp);
  /frameworks/base/services/java/com/android/server/am/
DeviceMonitor.java 100 Arrays.sort(files);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
RankAwarePromoterTest.java 102 Collections.sort(ordered, new Comparator<Corpus>() {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BaseHeapPanel.java 152 // sort the segment element in the heap info.
155 Collections.sort(elementList);
  /external/webkit/WebKit/chromium/src/js/
HeapProfilerPanel.js 97 "size": { title: WebInspector.UIString("Size"), width: "72px", sort: "descending", sortable: true },
369 this.snapshotDataGridList.sort(lastComparator, true);
384 this.snapshotDataGridList.sort(WebInspector.HeapSnapshotDataGridList.propertyComparator(sortProperty[0], sortProperty[1], sortAscending));
604 this.sort(currentComparator, true);
621 sort: function(comparator, force) {
625 this.children.sort(comparator);
633 child.sort(comparator, force);
818 sort: WebInspector.HeapSnapshotDataGridNodeWithRetainers.prototype.sort,
    [all...]
  /build/tools/droiddoc/src/
Stubs.java 775 // extract the set of packages, sort them by name, and write them out in that order
778 Arrays.sort(allPackages, PackageInfo.comparator);
    [all...]
  /cts/tools/dx-tests/etc/
compileall 86 find $project_src/dxc/junit -name '*.j' | sort > $tmpdir/alljasminfiles
  /development/samples/GlobalTime/src/com/android/globaltime/
City.java 105 Arrays.sort(ocities);
121 Arrays.sort(ocities, new Comparator() {
  /external/icu4c/test/perf/perldriver/
PerfFramework.pm 69 foreach $locale (sort keys %datafiles ) {
108 foreach $i ( sort keys %tests ) {
  /external/icu4c/tools/gendraft/
genheaders.pl 196 foreach $key (sort (keys(%disableRenaming))) {
201 foreach $key (sort (keys(%enableRenaming))) {
  /external/icu4c/tools/tzcode/
tzselect.ksh 158 ' <$TZ_ZONE_TABLE | sort -f)
  /external/stlport/test/eh/
test_algo.cpp 46 // Sort each half of the buffer and reset the address of each element
50 EH_STD::sort( begin(), begin() + ( end() - begin() )/2 );
51 EH_STD::sort( begin() + ( end() - begin() )/2, end() );
  /external/v8/test/mjsunit/regress/
regress-201.js 34 numbers.sort();
  /external/webkit/JavaScriptCore/runtime/
JSArray.h 59 void sort(ExecState*);
60 void sort(ExecState*, JSValue compareFunction, CallType, const CallData&);
  /external/webkit/WebCore/inspector/front-end/
ObjectPropertiesSection.js 68 properties.sort(rootPropertyComparer);
145 properties.sort(WebInspector.ObjectPropertiesSection.CompareProperties);
  /external/webkit/WebCore/svg/animation/
SMILTimeContainer.cpp 176 std::sort(smilElements.begin(), smilElements.end(), PriorityCompare(elapsed));
188 std::sort(smilElements.begin(), smilElements.end(), applyOrderSortFunction);
250 // Sort according to priority. Elements with later begin time have higher priority.
301 // Sort <animateTranform> to be the last one to be applied. <animate> may change transform attribute as
  /frameworks/base/core/java/android/widget/
ArrayAdapter.java 234 * @param comparator The comparator used to sort the objects contained
237 public void sort(Comparator<? super T> comparator) { method in class:ArrayAdapter
238 Collections.sort(mObjects, comparator);
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmProvider.java 97 String[] selectionArgs, String sort) {
117 null, null, sort);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmProvider.java 96 String[] selectionArgs, String sort) {
116 null, null, sort);
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 31 * <code>IImageList</code> into one list and sort them according to the
53 public ImageListUber(IImageList [] sublist, int sort) {
56 sort == ImageManager.SORT_ASCENDING
264 * use merge-sort-like algorithm to build the merged list. At begining,
  /packages/apps/Settings/src/com/android/settings/
LocalePicker.java 80 Arrays.sort(locales);
137 Arrays.sort(mLocales);
ZoneList.java 85 Collections.sort(timezoneSortedList, comparator);
94 Collections.sort(alphabeticalList, comparator);
  /dalvik/libcore/luni/src/main/java/java/util/
DualPivotQuicksort.java 46 * constant, insertion sort is used in preference to Quicksort.
52 * this constant, counting sort is used in preference to Quicksort.
58 * than this constant, counting sort is used in preference to Quicksort.
71 public static void sort(int[] a) { method in class:DualPivotQuicksort
88 public static void sort(int[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
95 * method differs from the public {@code sort} method in that the
104 // Use insertion sort on tiny arrays
136 // Sort these elements using a 5-element sorting network
274 // Sort left and right parts recursively, excluding known pivot values
340 // Sort center part recursively, excluding known pivot value
349 public static void sort(long[] a) { method in class:DualPivotQuicksort
366 public static void sort(long[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
627 public static void sort(short[] a) { method in class:DualPivotQuicksort
644 public static void sort(short[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
922 public static void sort(char[] a) { method in class:DualPivotQuicksort
939 public static void sort(char[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
1215 public static void sort(byte[] a) { method in class:DualPivotQuicksort
1232 public static void sort(byte[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
1518 public static void sort(float[] a) { method in class:DualPivotQuicksort
1543 public static void sort(float[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
1891 public static void sort(double[] a) { method in class:DualPivotQuicksort
1916 public static void sort(double[] a, int fromIndex, int toIndex) { method in class:DualPivotQuicksort
    [all...]

Completed in 1442 milliseconds

1 2 3 4 5 6 78 91011>>