Home
last modified time | relevance | path

Searched refs:success (Results 1 – 25 of 490) sorted by relevance

12345678910>>...20

/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/
DSocket.php76 $success = fclose($this->connectionID);
77 if($success)
79 return $success;
90 $success = false;
95 $success = true;
97 if($success)
110 $success = false;
112 $success = fwrite($this->connectionID, $sendString);
113 return $success;
124 $success = true;
[all …]
/plugin/diagramsnet/lib/js/diagramly/
DTrelloFile.js67 TrelloFile.prototype.save = function(revision, success, error) argument
69 this.doSave(this.getTitle(), success, error);
75 TrelloFile.prototype.saveAs = function(title, success, error) argument
77 this.doSave(title, success, error);
83 TrelloFile.prototype.doSave = function(title, success, error) argument
92 this.saveFile(title, false, success, error); argument
99 TrelloFile.prototype.saveFile = function(title, revision, success, error) argument
103 if (success != null)
105 success();
125 if (success != null)
[all …]
DStorageFile.js96 StorageFile.prototype.save = function(revision, success, error) argument
98 this.saveAs(this.getTitle(), success, error);
107 StorageFile.prototype.saveAs = function(title, success, error) argument
110 this.saveFile(title, false, success, error);
119 StorageFile.insertFile = function(ui, title, data, success, error) argument
130 success(file);
159 StorageFile.getFileContent = function(ui, title, success, error) argument
163 success(obj != null? obj.data : null);
169 ui.getLocalData(title, success);
184 StorageFile.getFileInfo = function(ui, title, success, error) argument
[all …]
DDriveFile.js148 DriveFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
152 this.saveFile(null, revision, success, error, unloading, overwrite); argument
162 DriveFile.prototype.saveFile = function(title, revision, success, error, unloading, overwrite) argument
168 if (success != null)
170 success();
220 if (success != null)
222 success(resp);
226 else if (success != null)
228 success(resp);
342 DriveFile.prototype.copyFile = function(success, error) argument
[all …]
DOneDriveFile.js219 OneDriveFile.prototype.loadDescriptor = function(success, error) argument
225 success(JSON.parse(req.getText()));
237 OneDriveFile.prototype.getLatestVersion = function(success, error) argument
239 this.ui.oneDrive.getFile(this.getId(), success, error);
277 OneDriveFile.prototype.loadPatchDescriptor = function(success, error) argument
285 success(JSON.parse(req.getText()));
324 OneDriveFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
326 this.doSave(this.getTitle(), revision, success, error, unloading, overwrite);
335 OneDriveFile.prototype.saveAs = function(title, success, error) argument
337 this.doSave(title, false, success, error);
[all …]
DDropboxFile.js97 DropboxFile.prototype.getRevisions = function(success, error) argument
125 success(revs);
143 DropboxFile.prototype.getLatestVersion = function(success, error) argument
145 this.ui.dropbox.getFile(this.getId(), success, error);
162 DropboxFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
164 this.doSave(this.getTitle(), revision, success, error, unloading, overwrite);
173 DropboxFile.prototype.saveAs = function(title, success, error) argument
175 this.doSave(title, false, success, error);
184 DropboxFile.prototype.doSave = function(title, revision, success, error, unloading, overwrite) argument
193 this.saveFile(title, revision, success, error, unloading, overwrite); argument
[all …]
DNotionFile.js84 NotionFile.prototype.save = function(revision, success, error, unloading, overwrite) argument
86 this.doSave(this.getTitle(), success, error, unloading, overwrite);
92 NotionFile.prototype.saveAs = function(title, success, error) argument
94 this.doSave(title, success, error);
100 NotionFile.prototype.doSave = function(title, success, error, unloading, overwrite) argument
109 this.saveFile(title, false, success, error, unloading, overwrite); argument
116 NotionFile.prototype.saveFile = function(title, revision, success, error, unloading, overwrite) argument
120 if (success != null)
122 success();
144 if (success != null)
[all …]
DLocalFile.js83 LocalFile.prototype.save = function(revision, success, error) argument
85 this.saveAs(this.title, success, error);
94 LocalFile.prototype.saveAs = function(title, success, error) argument
96 this.saveFile(title, false, success, error);
105 LocalFile.prototype.saveAs = function(title, success, error) argument
107 this.saveFile(title, false, success, error);
132 LocalFile.prototype.getLatestVersion = function(success, error) argument
136 success(null);
140 this.ui.loadFileSystemEntry(this.fileHandle, success, error);
150 LocalFile.prototype.saveFile = function(title, revision, success, error, useCurrentData) argument
[all …]
DGitHubFile.js128 GitHubFile.prototype.getLatestVersion = function(success, error) argument
130 this.peer.getFile(this.getId(), success, error);
182 GitHubFile.prototype.save = function(revision, success, error, unloading, overwrite, message) argument
184 this.doSave(this.getTitle(), success, error, unloading, overwrite, message);
193 GitHubFile.prototype.saveAs = function(title, success, error) argument
195 this.doSave(title, success, error);
204 GitHubFile.prototype.doSave = function(title, success, error, unloading, overwrite, message) argument
213 this.saveFile(title, false, success, error, unloading, overwrite, message); argument
223 GitHubFile.prototype.saveFile = function(title, revision, success, error, unloading, overwrite, mes… argument
227 if (success != null)
[all …]
DDropboxClient.js66 DropboxClient.prototype.updateUser = function(success, error, failOnAuth) argument
85 success();
103 this.updateUser(success, error, true);
117 DropboxClient.prototype.authenticate = function(success, error) argument
125 this.authenticateStep2(req.getText(), success, error);
134 DropboxClient.prototype.authenticateStep2 = function(state, success, error) argument
155 success();
216 success();
264 DropboxClient.prototype.executePromise = function(promiseFn, success, error) argument
283 if (acceptResponse && success != null)
[all …]
DDrawioComment.js35 DrawioComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument
38 success();
41 DrawioComment.prototype.editComment = function(newContent, success, error) argument
44 success();
47 DrawioComment.prototype.deleteComment = function(success, error) argument
50 success();
DDrawioFile.js197 DrawioFile.prototype.synchronizeFile = function(success, error) argument
210 this.sync.fileChanged(success, error);
214 this.updateFile(success, error);
222 DrawioFile.prototype.updateFile = function(success, error, abort, shadow) argument
252 this.mergeFile(latestFile, success, error, shadow);
256 this.reloadFile(success, error);
276 DrawioFile.prototype.mergeFile = function(file, success, error, diffShadow) argument
367 if (success != null)
369 success();
609 DrawioFile.prototype.reloadFile = function(success, error) argument
[all …]
/plugin/diagramsnet/lib/plugins/
DcConf-comments.js146 ui.initComments = function(contentId, success, error) argument
164 if (success)
166 success(spaceKey, pageId, pageType, contentVer);
176 else if (success)
178 success(confComments);
182 ui.getComments = function(success, error) argument
190 success(confComments);
241 success(conComments);
246 ui.addComment = function(comment, success, error) argument
258 success(id);
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/sys/
DFile.php55 $success = true;
67 $success = $this->open($this->filename, $this->fileOpenMode);
68 return $success;
77 $success = fclose($this->handleID);
78 if($success) {
84 return $success;
127 $success = false;
134 $success = true;
137 return $success;
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
DXMLDocument.php58 $success = $this->File($filename, $fileOpenMode);
71 return $success;
118 $success = $this->open($filename, $this->fileOpenModeWrite);
119 if($success) {
122 $success = false;
125 return $success;
166 $success = false;
169 $success = true;
171 return $success;
DTree.php57 $success = true;
62 $success = false;
65 return $success;
84 $success = false;
87 $success = true;
89 return $success;
DXML.php54 $success = false;
70 $success = true;
73 $success = false;
74 return $success;
85 $success = false;
90 $success = $this->addXMLBranch($newBranch, $id);
92 return $success;
103 $success = false;
106 $success = $this->addNode($id, $xmlBranch);
108 return $success;
[all …]
/plugin/recaptcha2/lib/ReCaptcha/
DResponse.php38 private $success = false; variable in ReCaptcha\\Response
74 * @param boolean $success
77 public function __construct($success, array $errorCodes = array()) argument
79 $this->success = $success;
90 return $this->success;
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php486 $success = false;
488 $success = true;
493 $success = $isDefined;
512 $success = $results[0];
515 $success = $results[0] || $results[1];
517 $success = $results[0] && $results[1];
525 if ($test === 'anyof' && $success) {
528 if ($test === 'allof' && !$success) {
566 $success = false;
568 $success = true;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataprocMetastore/
DRemoveIamPolicyResponse.php25 public $success; variable in Google\\Service\\DataprocMetastore\\RemoveIamPolicyResponse
30 public function setSuccess($success) argument
32 $this->success = $success;
39 return $this->success;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1AccessRemove.php29 public $success; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1AccessRemove
48 public function setSuccess($success) argument
50 $this->success = $success;
57 return $this->success;
DGoogleCloudApigeeV1AccessSet.php29 public $success; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1AccessSet
52 public function setSuccess($success) argument
54 $this->success = $success;
61 return $this->success;
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
DPlugin.php530 $success = false;
532 $success = true;
537 $success = $isDefined;
556 $success = $results[0];
559 $success = $results[0] || $results[1];
561 $success = $results[0] && $results[1];
569 if ($test === 'anyof' && $success) {
576 if ($test === 'allof' && !$success) {
622 $success = false;
624 $success = true;
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
DPHPClass.php64 $success = false;
67 $success = true;
69 return $success;
92 $success = false;
164 $success = true;
166 return $success;
186 $success = false;
189 $success = true;
191 return $success;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/
DProgressCounter.php33 public $success; variable in Google\\Service\\CloudHealthcare\\ProgressCounter
66 public function setSuccess($success) argument
68 $this->success = $success;
75 return $this->success;

12345678910>>...20