Lines Matching refs:error

47 	return err != null && err.error != null && err.error.code == 412;
148 DriveFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
152 this.saveFile(null, revision, success, error, unloading, overwrite); argument
153 }), error, unloading, overwrite]);
162 DriveFile.prototype.saveFile = function(title, revision, success, error, unloading, overwrite) argument
224 }), error, token);
231 else if (error != null)
233 error(resp);
240 if (error != null)
242 error(e);
276 if (error != null)
278 error();
282 else if (error != null)
284 error();
287 else if (error != null)
289 error(err);
296 if (error != null)
298 error(e);
311 if (error != null)
313 error(e);
328 if (error != null)
330 error(e);
342 DriveFile.prototype.copyFile = function(success, error) argument
352 this.save(true, success, error)
356 error(e);
359 }), error, true);
370 DriveFile.prototype.makeCopy = function(success, error, timestamp) argument
393 if (error != null)
395 error();
407 DriveFile.prototype.saveAs = function(filename, success, error) argument
409 this.ui.drive.copyFile(this.getId(), filename, success, error);
418 DriveFile.prototype.rename = function(title, success, error) argument
433 this.save(true, success, error);
450 }), error);
459 DriveFile.prototype.move = function(folderId, success, error) argument
470 }), error);
548 DriveFile.prototype.getRevisions = function(success, error) argument
582 }), error);
588 DriveFile.prototype.getLatestVersion = function(success, error) argument
590 this.ui.drive.getFile(this.getId(), success, error, true);
683 DriveFile.prototype.loadPatchDescriptor = function(success, error) argument
692 }), error);
709 DriveFile.prototype.loadDescriptor = function(success, error) argument
711 this.ui.drive.loadDescriptor(this.getId(), success, error);
725 DriveFile.prototype.getComments = function(success, error) argument
763 }), error);
769 DriveFile.prototype.addComment = function(comment, success, error) argument
782 }), error);