Lines Matching defs:WebInspector

34 WebInspector.OutputStreamDelegate = function()
38 WebInspector.OutputStreamDelegate.prototype = {
44 * @param {!WebInspector.ChunkedReader} reader
49 * @param {!WebInspector.ChunkedReader} reader
57 WebInspector.OutputStream = function()
61 WebInspector.OutputStream.prototype = {
64 * @param {function(!WebInspector.OutputStream)=} callback
74 WebInspector.ChunkedReader = function()
78 WebInspector.ChunkedReader.prototype = {
99 * @implements {WebInspector.ChunkedReader}
102 * @param {!WebInspector.OutputStreamDelegate} delegate
104 WebInspector.ChunkedFileReader = function(file, chunkSize, delegate)
114 WebInspector.ChunkedFileReader.prototype = {
116 * @param {!WebInspector.OutputStream} output
199 * @implements {WebInspector.ChunkedReader}
201 * @param {!WebInspector.OutputStreamDelegate} delegate
203 WebInspector.ChunkedXHRReader = function(url, delegate)
212 WebInspector.ChunkedXHRReader.prototype = {
214 * @param {!WebInspector.OutputStream} output
301 WebInspector.createFileSelectorElement = function(callback) {
319 WebInspector.findBalancedCurlyBrackets = function(source, startIndex, lastIndex) {
348 * @implements {WebInspector.OutputStream}
350 WebInspector.FileOutputStream = function()
354 WebInspector.FileOutputStream.prototype = {
367 * @this {WebInspector.FileOutputStream}
372 WebInspector.fileManager.addEventListener(WebInspector.FileManager.EventTypes.AppendedToURL, this._onAppendDone, this);
375 WebInspector.fileManager.save(this._fileName, "", true, callbackWrapper.bind(this));
380 * @param {function(!WebInspector.OutputStream)=} callback
385 WebInspector.fileManager.append(this._fileName, data);
393 WebInspector.fileManager.removeEventListener(WebInspector.FileManager.EventTypes.AppendedToURL, this._onAppendDone, this);
394 WebInspector.fileManager.close(this._fileName);
409 WebInspector.fileManager.removeEventListener(WebInspector.FileManager.EventTypes.AppendedToURL, this._onAppendDone, this);
410 WebInspector.fileManager.close(this._fileName);