Lines Matching refs:Array
318 * Check whether the mirror reflects an array.
319 * @returns {boolean} True if the mirror reflects an array
628 * @return {Array} Property names for this object
631 // Find kind and limit and allocate array for the result
673 var names = new Array(limit);
695 * Return the properties for this object as an array of PropertyMirror objects.
700 * @return {Array} Property mirrors for this object
704 var properties = new Array(names.length);
714 * Return the internal properties for this object as an array of
716 * @return {Array} Property mirrors for this object
765 * @return {Array} The objects which has direct references to this object.
801 * @return {Array} array (possibly empty) of InternalProperty instances
930 * @return {Array or undefined} The objects constructed by this function.
1025 * @param {Array} value The Array object reflected by this mirror
1044 if (from_index > to_index) return new Array();
1045 var values = new Array(to_index - from_index + 1);
1169 * @param {Array} details Details about the property
1354 * details from the VM is an array with the following content. See runtime.cc
2165 * @returns {Array.<Object>} Array of the referenced objects converted to
2169 // Collect the protocol representation of the referenced objects in an array.
2453 var p = new Array(propertyNames.length + propertyIndexes.length);
2508 * array of properties.
2547 * building the array of properties.
2586 var x = new Array(mirror.argumentCount());
2597 var x = new Array(mirror.localCount());