Home | History | Annotate | Download | only in mjsunit

Lines Matching defs:Array

30 // Test array sort.
151 // Test array sorting with holes in the array.
164 // Test array sorting with undefined elemeents in the array.
175 // in the array.
193 Array.prototype.sort.call(obj);
209 var x = new Array(4);
213 Array.prototype.sort.call(x);
232 Array.prototype.sort.call(x);
257 Array.prototype.sort.call(x);
283 Array.prototype.sort.call(obj, function(a,b) { return (b < a) - (a < b); });
315 Array.prototype.sort.call(y);
364 Array.prototype.sort.call(x);
394 // and with only elements of the array as arguments.