HomeSort by relevance Sort by last modified time
    Searched full:comparefn (Results 1 - 4 of 4) sorted by null

  /external/v8/test/webkit/
sort-randomly.js 25 "This tests that passing an inconsistent compareFn to sort() doesn't cause a crash."
35 // Sorting objects that change each time sort() looks at them is the same as using a random compareFn.
sort-randomly-expected.txt 24 This tests that passing an inconsistent compareFn to sort() doesn't cause a crash.
  /external/v8/src/js/
array.js 929 function InnerArraySort(array, length, comparefn) {
933 if (!IS_CALLABLE(comparefn)) { function
934 comparefn = function (x, y) {
950 var order = comparefn(tmp, element);
973 return comparefn(a[1], b[1]);
996 var c01 = comparefn(v0, v1);
1003 var c02 = comparefn(v0, v2);
1012 var c12 = comparefn(v1, v2);
1033 var order = comparefn(element, pivot);
1043 order = comparefn(top_elem, pivot)
    [all...]
typedarray.js 587 function TypedArraySort(comparefn) {
592 if (IS_UNDEFINED(comparefn)) {
593 comparefn = TypedArrayComparefn;
596 return InnerArraySort(this, length, comparefn);

Completed in 231 milliseconds