Lines Matching refs:sort
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();
131 a.sort();
145 a.sort();
156 a.sort();
167 a.sort();
178 a.sort(function(x, y) { return 1; });
179 a.sort();
193 Array.prototype.sort.call(obj); method in Array
213 Array.prototype.sort.call(x); method in Array
232 Array.prototype.sort.call(x); method in Array
257 Array.prototype.sort.call(x); method in Array
283 Array.prototype.sort.call(obj, function(a,b) { return (b < a) - (a < b); }); method in Array
315 Array.prototype.sort.call(y); method in Array
364 Array.prototype.sort.call(x); method in Array
406 arr.sort(cmpTest);