HomeSort by relevance Sort by last modified time
    Searched full:sort (Results 201 - 225 of 6279) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/oprofile/doc/
opreport.1.in 88 .BI "--reverse-sort / -r"
89 Reverse the sort from the default.
100 .BI "--sort / -s [vma,sample,symbol,debug,image]"
101 Sort the list of symbols by, respectively, symbol address,
  /external/replicaisland/src/com/replica/replicaisland/
Sorter.java 22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator); method in class:Sorter
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ArrayUtils.java 36 * Utility method to sort two related arrays - that is, two arrays where the elements are related to each other
40 * other after the sort
41 * @param firstArray The first array, which contains the values to sort
60 Arrays.sort(elements, new Comparator<element>(){
  /libcore/luni/src/test/java/libcore/java/text/
OldCollationKeyTest.java 61 assertTrue("returned collation key does not sort correctly",
64 assertTrue("returned collation key does not sort correctly",
67 assertTrue("returned collation key does not sort correctly",
70 assertTrue("returned collation key does not sort correctly",
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/
inplace_merge_comp.pass.cpp 44 std::sort(ia, ia+M, std::greater<int>());
45 std::sort(ia+M, ia+N, std::greater<int>());
100 std::sort(ia, ia+M, indirect_less());
101 std::sort(ia+M, ia+N, indirect_less());
  /packages/apps/Contacts/src/com/android/contacts/util/
PhonebookCollatorFactory.java 23 * Returns the collator that can be used to sort contact list entries. This
StreamItemPhotoEntry.java 25 * entries with a lower sort index will be displayed on top (with the ID used as a
90 // Sort index is used to compare, falling back to ID if neither entry has a
91 // sort index specified (entries without a sort index are sorted after entries
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Delegator.py 25 keys.sort()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Delegator.py 25 keys.sort()
  /system/core/toolbox/
getprop.c 24 /* Sort everything */
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 46 /** sort by type only */
49 /** sort in class-major order, with instances sorted per-class */
69 /** {@code non-null;} how to sort the items */
70 private final SortType sort; field in class:MixedItemSection
86 * @param sort how the items should be sorted in the final output
89 SortType sort) {
94 this.sort = sort;
296 switch (sort) {
298 Collections.sort(items)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 45 /** sort by type only */
48 /** sort in class-major order, with instances sorted per-class */
68 /** {@code non-null;} how to sort the items */
69 private final SortType sort; field in class:MixedItemSection
85 * @param sort how the items should be sorted in the final output
88 SortType sort) {
93 this.sort = sort;
295 switch (sort) {
297 Collections.sort(items)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MixedItemSection.java 46 /** sort by type only */
49 /** sort in class-major order, with instances sorted per-class */
69 /** {@code non-null;} how to sort the items */
70 private final SortType sort; field in class:MixedItemSection
86 * @param sort how the items should be sorted in the final output
89 SortType sort) {
94 this.sort = sort;
296 switch (sort) {
298 Collections.sort(items)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.h 36 // Returns true if the general copy/paste pasteboard contains any sort of
41 // Returns true if the dragging pasteboard contains any sort of bookmark
  /external/chromium/chrome/browser/history/
page_usage_data.h 104 // Sort predicate to sort instances by score (high to low)
  /external/chromium_org/base/i18n/
file_util_icu.h 32 // used to sort directory listings. It behaves like "operator<" for use in
33 // std::sort.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMStringList.cpp 51 void DOMStringList::sort() function in class:WebCore::DOMStringList
53 std::sort(m_strings.begin(), m_strings.end(), WTF::codePointCompareLessThan);
  /external/chromium_org/v8/test/intl/collator/
de-sort.js 28 // Sort plain German text using defaults.
34 var result = strings.sort(collator.compare);
en-sort.js 28 // Sort plain English text using defaults.
33 var result = strings.sort(collator.compare);
sr-sort.js 28 // Sort plain Serbian text using defaults.
34 var result = strings.sort(collator.compare);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2419.js 30 a.sort();
35 Array.prototype.sort.call(b);
regress-98773.js 28 // Calling Array.sort on an external array is not supposed to crash.
36 Array.prototype.sort.call(array);
regress-builtin-array-op.js 28 // Test that we invoke the correct sort function in
32 Array.prototype.sort = function(fn) { foo = "fisk"; };
  /external/chromium_org/v8/test/mjsunit/
this-in-callbacks.js 33 // test Array.sort
39 [1, 2].sort(cp);
  /external/chromium_org/v8/test/webkit/
array-sort-reentrance-expected.txt 24 This tests that a call to array.sort(compareFunction) does not crash from within a sort comparison function.

Completed in 1413 milliseconds

1 2 3 4 5 6 7 891011>>