Lines Matching refs:prototype

18 DriveFile.prototype.saveDelay = 0;
23 DriveFile.prototype.allChangesSavedKey = 'allChangesSavedInDrive';
28 DriveFile.prototype.getSize = function()
36 DriveFile.prototype.isRestricted = function()
45 DriveFile.prototype.isConflict = function(err)
53 DriveFile.prototype.getCurrentUser = function()
64 DriveFile.prototype.getMode = function()
72 DriveFile.prototype.getPublicUrl = function(fn)
104 DriveFile.prototype.isAutosaveOptional = function()
115 DriveFile.prototype.isRenamable = function()
117 return this.isEditable() && DrawioFile.prototype.isEditable.apply(this, arguments);
126 DriveFile.prototype.isMovable = function()
137 DriveFile.prototype.isTrashed = function()
148 DriveFile.prototype.save = function(revision, success, error, unloading, overwrite)
150 DrawioFile.prototype.save.apply(this, [revision, mxUtils.bind(this, function()
162 DriveFile.prototype.saveFile = function(title, revision, success, error, unloading, overwrite)
208 Math.max(DriveFile.prototype.autosaveDelay,
342 DriveFile.prototype.copyFile = function(success, error)
363 DrawioFile.prototype.copyFile.apply(this, arguments);
370 DriveFile.prototype.makeCopy = function(success, error, timestamp)
407 DriveFile.prototype.saveAs = function(filename, success, error)
418 DriveFile.prototype.rename = function(title, success, error)
459 DriveFile.prototype.move = function(folderId, success, error)
479 DriveFile.prototype.share = function()
490 DriveFile.prototype.getTitle = function()
501 DriveFile.prototype.getHash = function()
512 DriveFile.prototype.getId = function()
523 DriveFile.prototype.isEditable = function()
525 return DrawioFile.prototype.isEditable.apply(this, arguments) &&
532 DriveFile.prototype.isSyncSupported = function()
540 DriveFile.prototype.isRevisionHistorySupported = function()
548 DriveFile.prototype.getRevisions = function(success, error)
588 DriveFile.prototype.getLatestVersion = function(success, error)
596 DriveFile.prototype.getChannelId = function()
611 DriveFile.prototype.getChannelKey = function()
619 DriveFile.prototype.getLastModifiedDate = function()
627 DriveFile.prototype.getDescriptor = function()
635 DriveFile.prototype.setDescriptor = function(desc)
643 DriveFile.prototype.getDescriptorSecret = function(desc)
651 DriveFile.prototype.setDescriptorRevisionId = function(desc, id)
659 DriveFile.prototype.getDescriptorRevisionId = function(desc)
667 DriveFile.prototype.getDescriptorEtag = function(desc)
675 DriveFile.prototype.setDescriptorEtag = function(desc, etag)
683 DriveFile.prototype.loadPatchDescriptor = function(success, error)
698 DriveFile.prototype.patchDescriptor = function(desc, patch)
703 DrawioFile.prototype.patchDescriptor.apply(this, arguments);
709 DriveFile.prototype.loadDescriptor = function(success, error)
717 DriveFile.prototype.commentsSupported = function()
725 DriveFile.prototype.getComments = function(success, error)
769 DriveFile.prototype.addComment = function(comment, success, error)
788 DriveFile.prototype.canReplyToReplies = function()
796 DriveFile.prototype.canComment = function()
804 DriveFile.prototype.newComment = function(content, user)