Home | History | Annotate | Download | only in parse-only

Lines Matching refs:Array

55 				// HANDLE: $(html) -> $(array)
108 // Get the whole matched element set as a clean array
112 // Return a 'clean' array
113 Array.prototype.slice.call( this ) :
119 // Take an array of elements and push it onto the stack
140 // the specified array of elements (destroying the stack in the process)
143 // Resetting the length to 0, then using the native Array push
144 // is a super-fast way to populate an object with array-like properties
146 Array.prototype.push.apply( this, elems );
152 // (You can seed the arguments with an array of args, but this is
283 // Behaves like an Array's method, not like a jQuery method.
436 // We don't need an array for one selects
440 // Multi-Selects return an array
500 return this.pushStack( Array.prototype.slice.apply( this, arguments ),
501 "slice", Array.prototype.slice.call(arguments).join(",") );
636 return toString.call(obj) === "[object Array]";
1070 makeArray: function( array ) {
1073 if( array != null ){
1074 var i = array.length;
1076 if( i == null || typeof array === "string" || jQuery.isFunction(array) || array.setInterval )
1077 ret[0] = array;
1080 ret[--i] = array[i];
1086 inArray: function( elem, array ) {
1087 for ( var i = 0, length = array.length; i < length; i++ )
1089 if ( array[ i ] === elem )
1113 unique: function( array ) {
1118 for ( var i = 0, length = array.length; i < length; i++ ) {
1119 var id = jQuery.data( array[ i ] );
1123 ret.push( array[ i ] );
1128 ret = array;
1137 // Go through the array, only saving the items
1149 // Go through the array, translating each of the items to their
1504 if ( toString.call(checkSet) === "[object Array]" ) {
1916 last: function(elem, i, match, array){
1917 return i === array.length - 1;
1939 PSEUDO: function(elem, match, i, array){
1943 return filter( elem, i, match, array );
2042 POS: function(elem, match, i, array){
2046 return filter( elem, i, match, array );
2058 var makeArray = function(array, results) {
2059 array = Array.prototype.slice.call( array );
2062 results.push.apply( results, array );
2066 return array;
2070 // converting a NodeList to an array using builtin methods.
2072 Array.prototype.slice.call( document.documentElement.childNodes );
2076 makeArray = function(array, results) {
2079 if ( toString.call(array) === "[object Array]" ) {
2080 Array.prototype.push.apply( ret, array );
2082 if ( typeof array.length === "number" ) {
2083 for ( var i = 0, l = array.length; i < l; i++ ) {
2084 ret.push( array[i] );
2087 for ( var i = 0; array[i]; i++ ) {
2088 ret.push( array[i] );
3731 // Serialize an array of form elements or a set of
3740 // If an array was passed in, assume that it is an array
3752 // If the value is an array then the key names need to be repeated