/external/v8/test/mjsunit/ |
D | array-sort.js | 38 a.sort(); 41 a.sort(function(x, y) { return x - y; }); 46 a.sort(); 51 a.sort(); 55 a = [9, 1000000000].sort(); 57 a = [1000000000, 1].sort(); 59 a = [1000000000, 0].sort(); 63 a = [1230, 123].sort(); 65 a = [1231, 123].sort(); 70 a.sort(); [all …]
|
D | object-get-own-property-names.js | 33 propertyNames.sort(); 40 propertyNames.sort(); 49 propertyNames.sort(); 56 propertyNames.sort(); 68 propertyNames.sort(); 76 propertyNames.sort();
|
D | function-caller.js | 51 [Array.prototype.sort, Array.prototype.sort].sort(f); method in Array
|
D | testcfg.py | 131 mjsunit.sort() 132 regress.sort() 133 bugs.sort() 134 third_party.sort() 135 tools.sort() 136 compiler.sort() 137 harmony.sort()
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/ |
D | regress-178722.js | 83 arr = arr1.sort(); 89 arr = arr2.sort(); 95 arr = arr3.sort(); 101 arr = arr4.sort(); 107 arr = arr5.sort(); 117 arr = arr1.sort(g); 123 arr = arr2.sort(g); 129 arr = arr3.sort(g); 135 arr = arr4.sort(g); 141 arr = arr5.sort(g);
|
D | regress-157652.js | 126 a1.sort(); 131 a2.sort(); 135 a3.sort();
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Array/ |
D | regress-130451.js | 72 actual = arr.sort(cmp).length; 79 actual = arr.sort(cmp).length; 87 actual = arr.sort(cmp).length; 97 arr.sort(cmp); 128 obj.sort = Array.prototype.sort; 135 actual = obj.sort(cmp).length; 146 obj.sort = Array.prototype.sort; 153 obj.sort(cmp); //<---- this is what triggered the buggy behavior below
|
/external/compiler-rt/make/ |
D | lib_info.mk | 18 AvailableModules := $(sort $(foreach key,$(SubDirKeys),\ 25 AvailableArchs := $(sort $(foreach key,$(SubDirKeys),\ 28 AvailableFunctions := $(sort $(foreach key,$(SubDirKeys),\ 31 CommonFunctions := $(sort\ 40 $(call Append,ArchFunctions.$(arch),$(sort \ 45 $(call Set,ArchFunctions.$(arch),$(sort $(ArchFunctions.$(arch))))\
|
/external/oprofile/pp/ |
D | opreport_options.cpp | 59 vector<string> sort; variable 75 popt::option(sort, "sort", 's', 117 if (options::xml && !sort.empty()) { in handle_sort_option() 122 sort.clear(); in handle_sort_option() 125 if (sort.empty() || options::xml) { in handle_sort_option() 131 sort.push_back("app-name"); in handle_sort_option() 132 sort.push_back("image"); in handle_sort_option() 134 sort.push_back("sample"); in handle_sort_option() 137 vector<string>::const_iterator cit = sort.begin(); in handle_sort_option() 138 vector<string>::const_iterator end = sort.end(); in handle_sort_option()
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
D | p6.cpp | 44 template<class T> void sort(Array<T>& v) { /* ... */ } in sort() function 50 sort(v); // expected-note{{required}} in f() 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
|
D | p11.cpp | 4 template<class T> void sort(Array<T>& v); 8 template<> void sort(Array<int>&);
|
/external/icu4c/tools/genren/ |
D | Makefile | 87 sorts: urename.sort urename.old.sort 91 urename.sort: urename.h 92 sort urename.h > $@ 94 urename.old.sort: $(top_srcdir)/common/unicode/urename.h 95 sort $(top_srcdir)/common/unicode/urename.h > $@
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTopologicalSort.java | 53 List nodes = g.sort(); in testFairlyLargeGraph() 67 List nodes = g.sort(); in testCyclicGraph() 81 List nodes = g.sort(); in testRepeatedEdges() 95 List nodes = g.sort(); in testSimpleTokenDependence() 109 List nodes = g.sort(); in testParserLexerCombo()
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
D | CollisionResults.java | 64 Collections.sort(results); in iterator() 85 Collections.sort(results); in getClosestCollision() 97 Collections.sort(results); in getFarthestCollision() 106 Collections.sort(results); in getCollision()
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/ |
D | 15.4.4.5-3.js | 83 testarr1.sort( comparefn1 ); 87 testarr2.sort( comparefn2 ); 91 testarr3.sort( comparefn3 ); 97 testarr4.sort(); 101 realarr.sort( realsort ); 105 stringarr.sort( stringsort );
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | ArraysTest.java | 857 Arrays.sort(reversedArray); in test_sort$B() 876 Arrays.sort(reversedArray, startIndex, endIndex); in test_sort$BII() 889 Arrays.sort(reversedArray, startIndex + 1, startIndex); in test_sort$BII() 895 Arrays.sort(reversedArray, -1, startIndex); in test_sort$BII() 901 Arrays.sort(reversedArray, startIndex, reversedArray.length + 1); in test_sort$BII() 908 Arrays.sort(new byte[1], startIndex + 1, startIndex); in test_sort$BII() 922 Arrays.sort(reversedArray); in test_sort$C() 942 Arrays.sort(reversedArray, startIndex, endIndex); in test_sort$CII() 955 Arrays.sort(reversedArray, startIndex + 1, startIndex); in test_sort$CII() 961 Arrays.sort(reversedArray, -1, startIndex); in test_sort$CII() [all …]
|
D | Arrays2Test.java | 124 Arrays.sort(reversedArray); in test_sort$D() 135 Arrays.sort(specials1); in test_sort$D() 143 Arrays.sort(specials2); in test_sort$D() 161 Arrays.sort(reversedArray); in test_sort$F() 171 Arrays.sort(specials1); in test_sort$F() 179 Arrays.sort(specials2); in test_sort$F() 367 Arrays.sort(strings, String.CASE_INSENSITIVE_ORDER); in test_binarySearch$TTLjava_util_ComparatorsuperT() 392 Arrays.sort(strings, null); in test_binarySearch$TTLjava_util_ComparatorsuperT() 425 Arrays.sort(strings, String.CASE_INSENSITIVE_ORDER); 432 Arrays.sort(strings, null); [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | MixedItemSection.java | 70 private final SortType sort; field in MixedItemSection 89 SortType sort) { in MixedItemSection() argument 94 this.sort = sort; in MixedItemSection() 296 switch (sort) { in placeItems() 298 Collections.sort(items); in placeItems() 302 Collections.sort(items, TYPE_SORTER); in placeItems()
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
D | p6.cpp | 4 template<class T> void sort(Array<T>& v) { } in sort() function 7 template void sort<>(Array<int>&); 9 template void sort(Array<long>&);
|
/external/proguard/src/proguard/classfile/editor/ |
D | AttributeSorter.java | 46 Arrays.sort(programClass.attributes, 0, programClass.u2attributesCount, this); in visitProgramClass() 59 Arrays.sort(programMember.attributes, 0, programMember.u2attributesCount, this); in visitProgramMember() 74 Arrays.sort(codeAttribute.attributes, 0, codeAttribute.u2attributesCount, this); in visitCodeAttribute()
|
/external/v8/test/mjsunit/regress/ |
D | regress-1360.js | 35 [1,2,3].sort(strict); 36 [1,2,3].sort(non_strict);
|
/external/stlport/test/unit/ |
D | sort_test.cpp | 117 sort(numbers, numbers + 6); in sort1() 132 sort(numbers, numbers + count, greater<int>()); in sort2() 150 sort( boolVector.begin(), boolVector.end() ); in sort3() 200 sort(numbers, numbers + sizeof(numbers) / sizeof(numbers[0]), less_equal<int>()); in bad_predicate_detected()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPNode.java | 645 public void sort() 659 quals[sortFrom].sort(); 663 Arrays.sort(quals, sortFrom, quals.length); 669 quals[j].sort(); 678 Collections.sort(children); 682 ((XMPNode) it.next()).sort(); 774 Arrays.sort(quals, i, quals.length); 789 Arrays.sort(children);
|
/external/chromium/net/base/ |
D | directory_lister.cc | 55 SORT_TYPE sort, in DirectoryLister() argument 60 sort_(sort), in DirectoryLister() 135 std::sort(e->data.begin(), e->data.end(), CompareDate); in ThreadMain() 137 std::sort(e->data.begin(), e->data.end(), CompareFullPath); in ThreadMain() 139 std::sort(e->data.begin(), e->data.end(), CompareAlphaDirsFirst); in ThreadMain()
|
/external/clang/test/CodeCompletion/ |
D | function-templates.cpp | 3 void sort(RandomAccessIterator first, RandomAccessIterator last); 15 std::sort(1, 2);
|