Searched refs:cancelFn (Results 1 – 8 of 8) sorted by relevance
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/ |
H A D | Promise.php | 14 private $cancelFn; variable in GuzzleHttp\\Promise\\Promise 21 * @param callable $cancelFn Fn that when invoked cancels the promise. 25 callable $cancelFn = null argument 28 $this->cancelFn = $cancelFn; 89 if ($this->cancelFn) { 90 $fn = $this->cancelFn; 91 $this->cancelFn = null; 140 $this->cancelFn = null;
|
/plugin/diagramsnet/lib/js/grapheditor/ |
H A D | Dialogs.js | 28 var ColorDialog = function(editorUi, color, apply, cancelFn) argument 258 if (cancelFn != null) 260 cancelFn(); 304 if (cancelFn != null) 306 cancelFn(); 427 var TextareaDialog = function(editorUi, title, url, fn, cancelFn, cancelTitle, w, h, argument 519 if (cancelFn != null) 521 cancelFn();
|
H A D | Editor.js | 2001 …Ui, filename, buttonText, fn, label, validateFn, content, helpLink, closeOnBtn, cancelFn, hints, w) argument 2183 if (cancelFn != null) 2185 cancelFn();
|
H A D | EditorUi.js | 5031 EditorUi.prototype.confirm = function(msg, okFn, cancelFn) argument 5040 else if (cancelFn != null) 5042 cancelFn();
|
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DriveClient.js | 2089 DriveClient.prototype.pickFile = function(fn, acceptAllFiles, cancelFn) argument 2125 if (cancelFn) 2127 cancelFn(); 2201 if (cancelFn && data.action == google.picker.Action.CANCEL) 2203 cancelFn();
|
H A D | Dialogs.js | 3975 if (cancelFn == null) 4391 if (cancelFn != null) 4393 cancelFn(); 4406 if (editorUi.editor.cancelFirst && cancelFn == null) 4426 if (cancelFn == null) 4482 if (!editorUi.editor.cancelFirst || cancelFn != null) 9897 if (cancelFn != null) 9899 cancelFn(); 11859 function AspectDialog(editorUi, pageId, layerIds, okFn, cancelFn) argument 11894 if (cancelFn != null) [all …]
|
H A D | EditorUi.js | 4138 EditorUi.prototype.confirm = function(msg, okFn, cancelFn, okLabel, cancelLabel, closable) argument 4155 if (cancelFn != null) 4157 cancelFn(); 15796 var ConfirmDialog = function(editorUi, message, okFn, cancelFn, okLabel, cancelLabel, argument 15833 if (cancelFn != null) 15835 cancelFn(cb.checked);
|
/plugin/authgooglesheets/vendor/guzzlehttp/promises/ |
H A D | README.md | 292 `$cancelFn`. `$waitFn` is a function that is invoked with no arguments and is 293 expected to resolve the promise. `$cancelFn` is a function with no arguments
|