Home | History | Annotate | Download | only in Array

Lines Matching refs:Sort

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",
163 eval( S + "; A.sort(); A.length") );
187 this.sort = Array.prototype.sort;
190 function Sort( a ) {