Lines Matching refs:success

273 		this.ui.showAuthDialog(this, true, mxUtils.bind(this, function(remember, success)  argument
277 if (success != null)
279 success();
315 DriveClient.prototype.executeRequest = function(reqObj, success, error) argument
415 if (success != null)
417 success(resp);
546 DriveClient.prototype.authorize = function(immediate, success, error, remember, popup) argument
552 this.updateAuthInfo(newAuthInfo, true, true, success, error);
563 this.authorizeStep2(req.getText(), immediate, success, error, remember, popup);
572 DriveClient.prototype.updateAuthInfo = function (newAuthInfo, remember, forceUserUpdate, success, e… argument
595 if (success != null)
597 success();
601 else if (success != null)
604 success();
608 DriveClient.prototype.authorizeStep2 = function(state, immediate, success, error, remember, popup) argument
656 …this.updateAuthInfo(newAuthInfo, true, false, success, error); //We set remember to true since we …
714 this.updateAuthInfo(newAuthInfo, remember, true, success, error);
811 DriveClient.prototype.updateUser = function(success, error) argument
839 if (success != null)
841 success();
865 DriveClient.prototype.copyFile = function(id, title, success, error) argument
874 }, success, error);
884 DriveClient.prototype.renameFile = function(id, title, success, error) argument
889 id, {'title' : title}), success, error);
899 DriveClient.prototype.moveFile = function(id, folderId, success, error) argument
904 'drive#fileLink', 'id': folderId}]}), success, error);
927 DriveClient.prototype.getLibrary = function(id, success, error) argument
929 return this.getFile(id, success, error, true, true);
935 DriveClient.prototype.loadDescriptor = function(id, success, error, fields) argument
939 }, success, error);
942 DriveClient.prototype.listFiles = function(searchStr, afterDate, mineOnly, success, error) argument
950 }, success, error);
982 DriveClient.prototype.getFile = function(id, success, error, readXml, readLibrary) argument
1003 this.getXmlFile(resp, success, error);
1023 …this.ui.convertFile(url, resp.title, resp.mimeType, this.extension, success, error, null, headers);
1031 this.getXmlFile(resp, success, error, true, readLibrary);
1035 this.getXmlFile(resp, success, error);
1072 DriveClient.prototype.getXmlFile = function(resp, success, error, ignoreMime, readLibrary) argument
1111 success(new DriveLibrary(this.ui, data, resp));
1186 success(new LocalFile(this.ui, xhr.responseText, resp.title + this.extension, true));
1209success((importFile) ? new LocalFile(this.ui, data, resp.title, true) : new DriveFile(this.ui, dat…
1273 DriveClient.prototype.saveFile = function(file, revision, success, errFn, noCheck, unloading, overw… argument
1510 success(resp, savedData);
1961 DriveClient.prototype.insertFile = function(title, data, folderId, success, error, mimeType, binary) argument
1981 success(new DriveLibrary(this.ui, data, resp));
1992 success(new DriveFile(this.ui, data, resp));