HomeSort by relevance Sort by last modified time
    Searched defs:sort (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/bluetooth/glib/tests/
qsort-test.c 11 sort (gconstpointer a, gconstpointer b, gpointer user_data) function
24 g_qsort_with_data (array, SIZE, sizeof (guint32), sort, NULL);
30 g_qsort_with_data (array, 0, sizeof (guint32), sort, NULL);
  /development/tools/mkstubs/tests/data/
TestTemplateClass.java 50 public static <T extends Comparable<? super T>> void sort(List<T> list) { method in class:TestTemplateClass
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 44 * If true, sort such that classes appear before their inner
48 private final boolean sort; field in class:ClassPathOpener
89 * @param sort if true, sort such that classes appear before their inner
94 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
96 this.sort = sort;
151 // Ensure inner classes sort second
182 if (sort) {
183 Arrays.sort(files, new Comparator<File>()
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
XmlReport.java 56 Collections.sort(packages, comparator);
68 Collections.sort(classes, comparator);
  /cts/tools/signature-tools/src/signature/io/html/
ApiOverviewPage.java 52 Collections.sort(removedPackages, new PackageByNameComparator());
56 Collections.sort(addedPackages, new PackageByNameComparator());
60 Collections.sort(changedPackages, new PackageByNameComparator());
PackageOverviewPage.java 52 Collections.sort(removedClasses, new ClassByNameComparator());
56 Collections.sort(addedClasses, new ClassByNameComparator());
60 Collections.sort(changedClasses, new ClassByNameComparator());
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERSet.java 49 this.sort();
66 this.sort();
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 44 template<class T> void sort(Array<T>& v) { /* ... */ } function
50 sort(v); // expected-note{{required}}
52 // sort(Array<T>&), T is String
55 template<> void sort<String>(Array<String>& v); // // expected-error{{after instantiation}}
56 template<> void sort<>(Array<char*>& v); // OK: sort<char*> not yet used
p1.cpp 98 template<class T> void sort(Array<T>& v) { /* ... */ } function
99 template<> void sort<char*>(Array<char*>&) ;
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p2.cpp 8 template<class T> void sort(Array<T>& v) { /* ... */ } function
9 template void sort(Array<char>&);
p6.cpp 4 template<class T> void sort(Array<T>& v) { } function
6 // instantiate sort(Array<int>&) - template-argument deduced
7 template void sort<>(Array<int>&);
9 template void sort(Array<long>&);
  /external/icu4c/layout/
OpenTypeUtilities.cpp 157 // Straight insertion sort from Knuth vol. III, pg. 81
159 void OpenTypeUtilities::sort(le_uint16 *array, le_int32 count) function in class:OpenTypeUtilities
  /external/oprofile/libpp/
symbol_sort.cpp 84 os << "compare_by(): unknown sort option: "
132 sort(symbol_collection & syms, bool reverse_sort, bool lf) const function in class:sort_options
149 sort(diff_collection & syms, bool reverse_sort, bool lf) const function in class:sort_options
181 os << "unknown sort option: " << name << endl;
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 41 // Sort the fields.
42 Arrays.sort(programClass.fields, 0, programClass.u2fieldsCount, this);
44 // Sort the methods.
45 Arrays.sort(programClass.methods, 0, programClass.u2methodsCount, this);
InterfaceSorter.java 45 // Sort the interfaces.
46 Arrays.sort(interfaces, 0, interfacesCount);
AttributeSorter.java 45 // Sort the attributes.
46 Arrays.sort(programClass.attributes, 0, programClass.u2attributesCount, this);
48 // Sort the attributes of the class members.
58 // Sort the attributes.
59 Arrays.sort(programMember.attributes, 0, programMember.u2attributesCount, this);
61 // Sort the attributes of the attributes.
73 // Sort the attributes.
74 Arrays.sort(codeAttribute.attributes, 0, codeAttribute.u2attributesCount, this);
  /external/skia/src/core/
SkRect.cpp 36 void SkIRect::sort() { function in class:SkIRect
54 void SkRect::sort() { function in class:SkRect
  /external/v8/test/mjsunit/regress/
regress-1131.js 29 Array.prototype.sort.call(nonArray);
regress-326.js 29 // Should sort non-array into equivalent of [37,42,undefined,,0]
32 Array.prototype.sort.call(nonArray);
35 assertEquals(37, nonArray[0], "sort smallest first");
36 assertEquals(42, nonArray[1], "sort largest last");
38 assertEquals(undefined, nonArray[2], "sort undefined after largest");
  /frameworks/base/libs/utils/
StringArray.cpp 29 // An expanding array of strings. Add, get, sort, delete.
86 // Sort the array.
88 void StringArray::sort(int (*compare)(const void*, const void*)) { function in class:android::StringArray
93 // Pass this to the sort routine to do an ascending alphabetical sort.
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RopMethod.java 182 // Sort and immutablize all the predecessor lists.
186 preds.sort();
191 exitPredecessors.sort();
  /dalvik/dx/src/com/android/dx/rop/code/
RopMethod.java 182 // Sort and immutablize all the predecessor lists.
186 preds.sort();
191 exitPredecessors.sort();
  /external/guava/src/com/google/common/collect/
ComparatorOrdering.java 50 Collections.sort(list, comparator);
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 84 Collections.sort(predictions, sComparator);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
AsciiHprofWriter.java 56 Collections.sort(samples, SAMPLE_COMPARATOR);

Completed in 4104 milliseconds

1 2 3 4 5 6 7 8 91011