Lines Matching refs:error

79 		App.filesWorkerReq = function(msg, callback, error)  argument
82 App.filesWorkerReqInfo[msg.reqId] = {callback: callback, error: error}; property in App.filesWorkerReqInfo
91 if (resp.error)
93 callbacks.error(resp.msg, resp.e);
805 var error = mxUtils.bind(this, function(e)
830 this.readGraphFile(success, error, path);
1187 LocalFile.prototype.getLatestVersion = function(success, error) argument
1191 if (error != null)
1193 error({message: mxResources.get('fileNotFound')});
1204 }), error, this.fileObject.path);
1209 LocalFile.prototype.copyFile = function(success, error) argument
1211 this.saveAs(this.ui.getCopyFilename(this), success, error);
1313 LocalFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
1317 this.saveFile(revision, success, error, unloading, overwrite); argument
1318 }), error, unloading, overwrite]);
1349 LocalFile.prototype.saveFile = function(revision, success, error, unloading, overwrite) argument
1378 if (error != null)
1380 error(e);
1414 }), error);
1442 }, error, null, p.scale, p.border);
1492 LocalFile.prototype.saveAs = function(title, success, error) argument
1526 this.save(false, success, error, null, true);
1608 var error = mxUtils.bind(this, function(resp)
1650 }), error);
1672 }), error)
1818 EditorUi.prototype.writeImageToClipboard = function(dataUrl, w, h, error) argument
1830 error(e);
1887 mxElectronRequest.prototype.send = function(callback, error) argument
1902 error(err);
2144 EditorUi.prototype.loadDesktopLib = function(libPath, success, error) argument
2151 }), error, libPath);