Lines Matching refs:__arrayProto
6944 var __arrayProto = Array.prototype; variable
7114 concat: __arrayProto.concat,
7150 if ( __arrayProto.filter ) {
7151 a = __arrayProto.filter.call( this, fn, this );
7173 join: __arrayProto.join,
7176 indexOf: __arrayProto.indexOf || function (obj, start)
7258 lastIndexOf: __arrayProto.lastIndexOf || function (obj, start)
7272 if ( __arrayProto.map ) {
7273 a = __arrayProto.map.call( this, fn, this );
7295 pop: __arrayProto.pop,
7298 push: __arrayProto.push,
7302 reduce: __arrayProto.reduce || function ( fn, init )
7308 reduceRight: __arrayProto.reduceRight || function ( fn, init )
7314 reverse: __arrayProto.reverse,
7321 shift: __arrayProto.shift,
7329 sort: __arrayProto.sort, // ? name - order?
7332 splice: __arrayProto.splice,
7337 return __arrayProto.slice.call( this );
7359 unshift: __arrayProto.unshift