Home | History | Annotate | Download | only in src

Lines Matching full:elements

76   var elements = new InternalArray(keys_length);
84 elements[elements_length++] = e;
88 return %StringBuilderConcat(elements, elements_length, '');
111 // Attempt to convert the elements.
124 // Construct an array for the elements.
125 var elements = new InternalArray(length);
134 elements[elements_length++] = e;
137 elements.length = elements_length;
138 var result = %_FastAsciiArrayJoin(elements, '');
140 return %StringBuilderConcat(elements, elements_length, '');
144 // remaining elements are also likely to be numbers.
149 elements[i] = e;
154 if (IS_NUMBER(e)) elements[i] = %_NumberToString(e);
157 elements[i] = e;
161 var result = %_FastAsciiArrayJoin(elements, separator);
164 return %StringBuilderJoin(elements, length, separator);
200 // Move deleted elements to a new array (the return value from splice).
304 // know we are not deleting or moving a lot of elements.
320 // Move the existing elements after the elements to be deleted
598 // given as a request to delete all the elements from the start.
614 // Number of elements to add.
641 // place of the deleted elements.
650 // Return the deleted elements.
728 var low_end = from + 1; // Upper bound of elements lower than pivot.
729 var high_start = to - 1; // Lower bound of elements greater than pivot.
733 // From low_end to i are elements equal to pivot.
734 // From i to high_start are elements that haven't been compared yet.
759 // Copy elements in the range 0..length from obj's prototype chain
793 // elements in that range.
820 // Copy defined elements from the end to fill in all holes and undefineds
855 // of defined elements.
864 // For compatability with Webkit, do not expose elements in the prototype.
872 // Return the number of defined elements.
882 // For compatibility with JSC, we also sort elements inherited from
885 // local elements. This is not very efficient, but sorting with
886 // inherited elements happens very, very rarely, if at all.
904 // For compatibility with JSC, we shadow any elements in the prototype
915 // or delete elements from the array.