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

1 2 3 45 6 7 8 91011>>

  /external/icu4c/i18n/
uspoof_buildconf.h 46 // This is sort of like a sorted set of strings, except that ICU's anemic
65 // Sort the contents; affects the ordering of getByIndex().
66 void sort(UErrorCode &status);
  /external/openssl/crypto/objects/
obj_dat.pl 89 @a=sort { $a <=> $b } keys %nid;
151 foreach (sort { $sn{$nid{$a}} cmp $sn{$nid{$b}} } @a)
157 foreach (sort { $ln{$nid{$a}} cmp $ln{$nid{$b}} } @a)
163 foreach (sort obj_cmp @a)
  /external/strace/linux/
ioctlent.sh 83 bases=$(sed -ne 's/.*_IOC_NONE.*,[[:space:]]*\([A-Z][A-Z0-9_]\+\)[[:space:]+,].*/\1/p' ioctls.h | uniq | sort)
  /external/strace/strace/linux/
ioctlent.sh 83 bases=$(sed -ne 's/.*_IOC_NONE.*,[[:space:]]*\([A-Z][A-Z0-9_]\+\)[[:space:]+,].*/\1/p' ioctls.h | uniq | sort)
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Array/
array-001.js 75 chars = chars.sort();
  /external/webkit/WebCore/inspector/front-end/
Database.js 82 callback(names.sort());
ProfileDataGridTree.js 130 sort: function(/*Function*/ comparator, /*Boolean*/ force)
141 // If the grid node is collapsed, then don't sort children (save operation for later).
155 children.sort(comparator);
227 this.sort(currentComparator, true);
344 sort: WebInspector.ProfileDataGridNode.prototype.sort,
  /external/webkit/WebCore/xml/
XPathNodeSet.h 66 void sort() const;
XPathNodeSet.cpp 46 ASSERT(from + 1 < to); // Should not call this function with less that two nodes to sort.
107 // Sort it according to this subdivision, and recursively sort each group.
135 void NodeSet::sort() const function in class:WebCore::XPath::NodeSet
191 sort(); // FIXME: fully sorting the node-set just to find its first node is wasteful.
  /external/webkit/WebKitTools/Scripts/
compare-timing-files 76 @results = sort(@results);
update-iexploder-cssproperties 74 $result .= join("\n", sort { $a cmp $b } @properties) . "\n\n";
  /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.
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerTester.java 81 Arrays.sort(fa);
89 Arrays.sort(mWavDirs);
186 Arrays.sort(names);
206 Arrays.sort(names);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResourceItem.java 70 Collections.sort(list, sComparator);
  /sdk/traceview/src/com/android/traceview/
ProfileProvider.java 330 // Sort names alphabetically
332 Arrays.sort(mRoots, sorter);
335 Arrays.sort(mRoots, sorter);
338 Arrays.sort(mRoots, sorter);
341 Arrays.sort(mRoots, sorter);
344 Arrays.sort(mRoots, sorter);
347 Arrays.sort(mRoots, sorter);
350 Arrays.sort(mRoots, sorter);
  /external/bluetooth/glib/tests/
threadpool-test.c 256 test_thread_sort (gboolean sort)
265 if (sort) {
280 GINT_TO_POINTER (sort),
287 if (sort) {
300 sort ? "[ sorted]" : "[unsorted]",
438 DEBUG_MSG (("***** POOL SORT THREAD COUNT:%ld",
  /external/webkit/WebCore/dom/
make_names.pl 224 for my $name (sort keys %$namesRef) {
313 for my $tagName (sort keys %tagConstructorMap) {
337 for my $tagName (sort keys %tagConstructorMap) {
353 for my $tagName (sort keys %tagConstructorMap) {
505 for my $name (sort keys %tags) {
511 for my $name (sort keys %tags) {
522 for my $name (sort keys %attrs) {
527 for my $name (sort keys %attrs) {
571 for my $tagName (sort keys %tags) {
585 for my $tagName (sort keys %tags)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 265 // sort status is unchanged
357 public void sort() { method in class:IntList
361 Arrays.sort(values, 0, size);
444 * @see #sort
  /dalvik/libcore/
NativeCode.mk 75 # Extract out the allowed LOCAL_* variables. Note: $(sort) also
77 core_c_includes := $(sort dalvik/libcore/include $(LOCAL_C_INCLUDES) $(JNI_H_INCLUDE))
78 core_shared_libraries := $(sort $(LOCAL_SHARED_LIBRARIES))
79 core_static_libraries := $(sort $(LOCAL_STATIC_LIBRARIES))
  /external/icu4c/tools/genren/
genren.pl 171 foreach(sort keys(%CFuncs)) {
178 foreach(sort keys(%CppClasses)) {
  /external/skia/src/core/
SkRect.cpp 37 void SkIRect::sort() function in class:SkIRect
47 void SkRect::sort() function in class:SkRect
  /external/v8/test/mozilla/
testcfg.py 106 dirs.sort()
117 files.sort()
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.5-1.js 24 ECMA Section: Array.prototype.sort(comparefn)
29 The elements of this array are sorted. The sort is not necessarily stable.
77 4.If the argument comparefn was not provided in the call to sort, go to step 7.
87 property values always sort to the end of the result. It is implementation-dependent whether or not such
88 properties will exist or not at the end of the array when the sort is concluded.
90 Note that the sort function is intentionally generic; it does not require that its this value be an Array object.
91 Therefore it can be transferred to other kinds of objects for use as a method. Whether the sort function can be
102 var TITLE = "Array.prototype.sort(comparefn)";
158 var E = Sort( A );
161 S +"; A.sort(); A.length"
    [all...]
15.4.4.5-2.js 24 ECMA Section: Array.prototype.sort(comparefn)
28 In this cases, the sort creates a reverse sort.
30 The elements of this array are sorted. The sort is not necessarily stable.
78 4.If the argument comparefn was not provided in the call to sort, go to step 7.
88 property values always sort to the end of the result. It is implementation-dependent whether or not such
89 properties will exist or not at the end of the array when the sort is concluded.
91 Note that the sort function is intentionally generic; it does not require that its this value be an Array object.
92 Therefore it can be transferred to other kinds of objects for use as a method. Whether the sort function can be
103 var TITLE = "Array.prototype.sort(comparefn)"
    [all...]
  /external/webkit/WebCore/platform/text/mac/
make-charset-table.pl 130 for my $alias (sort keys %aliases) {
152 my @names = sort $canonical_name, @aliases;

Completed in 1384 milliseconds

1 2 3 45 6 7 8 91011>>