Lines Matching refs:Array
12 var GlobalArray = global.Array;
442 // Allocate array for caching the columns where the actual source starts.
1054 // Add an Array of break points hit if any.
1711 var array = [];
1740 array.push(description);
1744 breakpoints: array,
2534 * Convert an array to its debugger protocol representation. It will convert
2535 * each array element to a protocol value.
2536 * @param {Array} array The array to format as protocol array.
2539 * @return {Array} Protocol array value.
2541 function ArrayToProtocolArray_(array, mirror_serializer) {
2543 for (var i = 0; i < array.length; i++) {
2544 json.push(ValueToProtocolValue_(array[i], mirror_serializer));