| /frameworks/base/tools/preload/ |
| sorttable.js | 11 Click on the headers to sort 89 // make it clickable to sort 140 // build an array to sort. This is a Schwartzian transform thing, 141 // i.e., we "decorate" each row with the actual sort key, 142 // sort based on the sort keys, and then put the rows back in order 150 /* If you want a stable sort, uncomment the following line */ 153 row_array.sort(this.sorttable_sortfunction); 256 /* sort functions 257 each sort function takes two parameters, a and [all...] |
| /packages/apps/Email/src/com/android/email/ |
| Account.java | 304 * So, we get all the existing account numbers, sort them ascending, loop through 317 Arrays.sort(accountNumbers);
|
| /packages/apps/Settings/src/com/android/settings/ |
| ActivityPicker.java | 186 Collections.sort(list, new ResolveInfo.DisplayNameComparator(packageManager));
|
| /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
| OpenWnnEngineJAJP.java | 596 /* sort the array of words */ 597 Arrays.sort(result, new WnnWordComparator());
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| GlobalSearchSupport.java | 171 * <p>TODO: switch to new sort key 426 Collections.sort(suggestionList, new Comparator<SearchSuggestion>() {
|
| /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
| FileListingService.java | 766 // sort the children and set them as the new children 767 Collections.sort(entryList, FileEntry.sEntryComparator);
|
| /sdk/eventanalyzer/src/com/android/eventanalyzer/ |
| EventAnalyzer.java | 373 // sort the list 374 Collections.sort(list);
|
| /sdk/traceview/src/com/android/traceview/ |
| MethodData.java | 176 // Sort the parents and children into decreasing inclusive time 226 // Sort the array by elapsed inclusive time 227 Arrays.sort(sorted, mByElapsedInclusive); 417 // If the sort column specified is the same as last time, 418 // then reverse the sort order. 420 // Reverse the sort order 426 // Sort names into increasing order, data into decreasing order.
|
| /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
| DelayQueueTest.java | 735 Arrays.sort(o); 751 Arrays.sort(ints);
|
| PriorityBlockingQueueTest.java | 693 Arrays.sort(o); 709 Arrays.sort(ints);
|
| /dalvik/libcore/support/src/test/java/tests/resources/ |
| junit4-4.3.1.jar | |
| /external/grub/util/ |
| grub-install | 352 | sort | uniq -d | sed -n 1p`
|
| /external/stlport/stlport/stl/ |
| _algo.h | 405 // sort() and its auxiliary functions. 418 void sort(_RandomAccessIter __first, _RandomAccessIter __last); 420 void sort(_RandomAccessIter __first, _RandomAccessIter __last, _Compare __comp);
|
| _list.h | 660 void sort() function in class:list 678 void sort(_StrictWeakOrdering __comp) function in class:list
|
| _slist.h | 790 void sort() { _STLP_PRIV _Slist_sort(*this, less<value_type>()); } function in class:slist 813 void sort(_StrictWeakOrdering __comp) function in class:slist
|
| /external/v8/test/mjsunit/ |
| undeletable-functions.js | 38 "shift", "unshift", "slice", "splice", "sort", "filter", "forEach", "some",
|
| /external/webkit/WebCore/inspector/front-end/ |
| DataGrid.js | 85 if (column.sort) { 86 cell.addStyleClass("sort-" + column.sort); 262 if (!this._sortColumnCell || this._sortColumnCell.hasStyleClass("sort-ascending")) 264 if (this._sortColumnCell.hasStyleClass("sort-descending")) 649 this._sortColumnCell.removeStyleClass("sort-ascending"); 650 this._sortColumnCell.removeStyleClass("sort-descending"); 662 cell.addStyleClass("sort-" + sortOrder); [all...] |
| /external/webkit/WebKit/win/ |
| WebHistory.cpp | 73 sort(m_dateKeys.begin(), m_dateKeys.end()); 484 // Use std::greater to sort the days in descending order (i.e., most-recent first). 485 sort(m_orderedLastVisitedDays.get(), m_orderedLastVisitedDays.get() + dateCount, greater<DATE>()); [all...] |
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/ |
| rebaseline_chromium_webkit_tests.py | 321 revisions.sort(key=int) 797 tests.sort() [all...] |
| /frameworks/base/cmds/pm/src/com/android/commands/pm/ |
| Pm.java | 238 // Sort by name 239 Collections.sort(list, new Comparator<FeatureInfo>() { 294 // Sort by target package 295 Collections.sort(list, new Comparator<InstrumentationInfo>() { [all...] |
| /frameworks/base/services/java/com/android/server/am/ |
| UsageStatsService.java | 352 // Sort files 353 Collections.sort(fileList); 631 Collections.sort(fileList);
|
| /frameworks/base/tools/localize/ |
| XLIFFFile.cpp | 471 sort(files.begin(), files.end()); 500 sort(transUnits.begin(), transUnits.end(), compare_id);
|
| /ndk/build/core/ |
| build-binary.mk | 184 ALL_DEPENDENCY_DIRS += $(sort $(LOCAL_DEPENDENCY_DIRS))
|
| /packages/apps/Gallery/src/com/android/camera/ |
| ViewImage.java | 884 int sort = sortOrder.equals("ascending") local 887 return ImageManager.makeImageList(getContentResolver(), uri, sort); [all...] |
| /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
| LogPanel.java | 723 // we need to sort the items to be sure. 724 Arrays.sort(selection); 856 // we need to sort the items to be sure. 857 Arrays.sort(selection); [all...] |