/plugin/elasticsearch/vendor/react/promise/src/ |
H A D | functions.php | 34 return new Promise(function ($resolve, $reject, $notify) use ($promiseOrValue) { 35 $promiseOrValue->then($resolve, $reject, $notify); 51 * This can be useful in situations where you need to reject a promise without 58 function reject($promiseOrValue = null) function 100 return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $cancellationQueue) { 102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) { 112 ->done($resolve, $reject, $notify); 114 }, $reject, $notify); 123 * The returned promise will only reject if *all* items in `$promisesOrValues` are 126 * The returned promise will also reject wit [all...] |
H A D | Promise.php | 117 return function ($resolve, $reject, $notify) use ($onFulfilled, $onRejected, $onProgress) { 132 $this->handlers[] = static function (ExtendedPromiseInterface $promise) use ($onFulfilled, $onRejected, $resolve, $reject, $progressHandler) { 135 ->done($resolve, $reject, $progressHandler); 142 private function reject($reason = null) function in React\\Promise\\Promise 148 $this->settle(reject($reason)); 217 // Keep references to this promise instance for the static resolve/reject functions. 237 $target->reject($reason); 250 $this->reject($e); 253 $this->reject($e);
|
H A D | Deferred.php | 21 $this->promise = new Promise(function ($resolve, $reject, $notify) { 23 $this->rejectCallback = $reject; 39 public function reject($reason = null) function in React\\Promise\\Deferred
|
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/ |
H A D | Coroutine.php | 73 $this->result->reject($exception); 75 $this->result->reject($throwable); 116 public function reject($reason) function in GuzzleHttp\\Promise\\Coroutine 118 $this->result->reject($reason); 147 $this->result->reject($exception); 149 $this->result->reject($throwable); 164 $this->result->reject($exception); 166 $this->result->reject($throwable);
|
H A D | Promise.php | 95 $this->reject($e); 97 $this->reject($e); 104 $this->reject(new CancellationException('Promise has been cancelled')); 113 public function reject($reason) function in GuzzleHttp\\Promise\\Promise 210 $promise->reject($value); 213 $promise->reject($reason); 215 $promise->reject($reason); 229 $this->reject('Cannot wait on a promise that has ' 239 $this->reject('Invoking the wait callback did not resolve the promise'); 253 $this->reject($reason);
|
H A D | FulfilledPromise.php | 43 $p->reject($e); 45 $p->reject($e); 75 public function reject($reason) function in GuzzleHttp\\Promise\\FulfilledPromise
|
H A D | RejectedPromise.php | 45 $p->reject($e); 48 $p->reject($e); 80 public function reject($reason) function in GuzzleHttp\\Promise\\RejectedPromise
|
H A D | EachPromise.php | 88 $this->aggregate->reject($e); 94 $this->aggregate->reject($e); 217 $this->aggregate->reject($e); 221 $this->aggregate->reject($e);
|
H A D | Utils.php | 55 $promise->reject($e); 57 $promise->reject($e); 162 $aggregate->reject($reason);
|
H A D | PromiseInterface.php | 72 public function reject($reason); function
|
H A D | Each.php | 86 $aggregate->reject($reason);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/ |
H A D | OrderreturnsReturnItem.php | 48 public function setReject(OrderreturnsRejectOperation $reject) argument 50 $this->reject = $reject; 57 return $this->reject;
|
/plugin/davcal/vendor/sabre/event/tests/ |
H A D | PromiseTest.php | 25 $promise->reject(1); 96 $promise->reject(4); 154 $promise->reject(1); 155 $promise->reject(1); 179 $promise->reject('foo'); 219 $promise1->reject(1); 221 $promise2->reject(2);
|
/plugin/pwaoffline/ |
H A D | sw.js | 116 return new Promise(function (fulfill, reject) { argument 117 const timeoutId = setTimeout(reject, timeout); 121 reject(); 125 }, reject); 131 return Promise.reject('no-match'); 146 return Promise.reject('no-match');
|
/plugin/elasticsearch/vendor/react/promise/ |
H A D | README.md | 21 * [Deferred::reject()](#deferredreject) 38 * [reject()](#reject) 99 $deferred->reject(mixed $reason = null); 105 The `resolve` and `reject` methods control the state of the deferred. 134 #### Deferred::reject() 137 $deferred->reject(mixed $reason = null); 201 `$onFulfilled` or `$onRejected`, whichever is called, or will reject with 216 * [reject()](#reject) [all...] |
/plugin/davcal/vendor/sabre/event/lib/ |
H A D | Promise.php | 160 function reject($reason = null) { function in Sabre\\Event\\Promise 231 $subPromise->reject($e); 237 $subPromise->reject($this->value);
|
/plugin/webdav/vendor/sabre/event/lib/ |
H A D | Promise.php | 161 function reject($reason = null) { function in Sabre\\Event\\Promise 278 $subPromise->reject($e); 284 $subPromise->reject($this->value);
|
H A D | coroutine.php | 90 $promise->reject($reason); 115 $promise->reject($e);
|
/plugin/webdav/vendor/sabre/event/lib/Promise/ |
H A D | functions.php | 129 function reject($reason) { function 132 $promise->reject($reason);
|
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
H A D | chaining.js | 30 }).reject(function(n) { 42 }).reject(function(n) {
|
/plugin/pdfjs/pdfjs/build/ |
H A D | pdf.js | 1037 reject(reason); 3162 var reject = reaction.reject; 3191 reject(e); 3361 reject: function reject(r) { 3380 var reject = capability.reject; 3395 }, reject); 3405 var reject = capability.reject; 3713 var resolve, reject; 3717 reject = $$reject; 3720 this.reject = aFunction(reject); [all …]
|
/plugin/encryptedpasswords/script/ |
H A D | GUI.js | 31 return new Promise(function (resolve, reject) { 30 AnonymousFunctione97661740200(resolve, reject) global() argument
|
/plugin/authgooglesheets/vendor/guzzlehttp/promises/ |
H A D | README.md | 63 reject a promise with a *reason*. Resolving a promises triggers callbacks 73 will reject the promise and trigger the `$onRejected` callbacks). 139 $promise->reject('Error!'); 158 $promise->reject('Error!'); 176 $promise->reject('Error!'); 195 $promise->reject('Error!'); 203 it is expected to deliver a value to the promise or reject the promise. If the 244 $promise->reject('foo'); 264 $promise->reject('foo'); 347 - `reject($reason)`
|
/plugin/revealjs/lib/js/ |
H A D | promise.js | 2 …reject(t)})})}function n(){}function t(e){if(!(this instanceof t))throw new TypeError("Promises mu…
|
/plugin/sequencediagram/bower_components/lodash/lib/fp/ |
H A D | build-doc.js | 50 chunks = _.reject(chunks, _.isEmpty);
|