Lines Matching refs:_array
1937 clone:function(_array,_undeep){ argument
1939 Array.prototype.push.apply(tmp,_array); argument
1946 count:function(_array,_value){ argument
1948 pi.util.Array.forEach(_array,function(){
1953 forEach:function(_array,_function){ argument
1954 if(_array.forEach)
1955 return _array.forEach(_function);
1956 for(var i=0,len=_array.length; i<len; i++)
1957 _function.apply(_array,[_array[i],i,_array]);
1959 getLatest:function(_array){ argument
1960 return _array[_array.length-1];
1962 indexOf:function(_array,_value){ argument
1964 return _array.indexOf(_value);
1968 for(var i=0, len=_array.length; i<len; i++){
1969 if(_array[i]==_value){
1976 remove:function(_array,_index){ argument
1977 var result = _array.slice(0,_index);
1978 _array = Array.prototype.push.apply(result,_array.slice(_index+1));