Lines Matching refs:elements
76 var elements = new $Array(keys_length);
84 elements[elements_length++] = e;
88 return %StringBuilderConcat(elements, elements_length, '');
111 // Attempt to convert the elements.
126 // Construct an array for the elements.
127 var elements;
132 elements = new $Array(length);
137 elements[elements_length++] = e;
141 elements = new $Array(length << 1);
144 if (i != 0) elements[elements_length++] = separator;
147 elements[elements_length++] = e;
151 return %StringBuilderConcat(elements, elements_length, '');
184 // Move deleted elements to a new array (the return value from splice).
288 // know we are not deleting or moving a lot of elements.
304 // Move the existing elements after the elements to be deleted
602 // Number of elements to add.
629 // place of the deleted elements.
638 // Return the deleted elements.
715 var low_end = from; // Upper bound of the elements lower than pivot.
716 var high_start = to; // Lower bound of the elements greater than pivot.
717 // From low_end to i are elements equal to pivot.
718 // From i to high_start are elements that haven't been compared yet.
741 // Copies elements in the range 0..length from obj's prototype chain
775 // elements in that range.
802 // Copy defined elements from the end to fill in all holes and undefineds
837 // of defined elements.
846 // For compatability with Webkit, do not expose elements in the prototype.
854 // Return the number of defined elements.
864 // For compatibility with JSC, we also sort elements inherited from
867 // local elements. This is not very efficient, but sorting with
868 // inherited elements happens very, very rarely, if at all.
886 // For compatibility with JSC, we shadow any elements in the prototype
897 // or delete elements from the array.