/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/ |
H A D | Each.php | 21 * @param callable $onFulfilled 28 callable $onFulfilled = null, argument 32 'fulfilled' => $onFulfilled, 47 * @param callable $onFulfilled 55 callable $onFulfilled = null, argument 59 'fulfilled' => $onFulfilled, 72 * @param callable $onFulfilled 79 callable $onFulfilled = null argument 84 $onFulfilled,
|
H A D | functions.php | 253 * @param callable $onFulfilled 262 callable $onFulfilled = null, argument 265 return Each::of($iterable, $onFulfilled, $onRejected); 278 * @param callable $onFulfilled 288 callable $onFulfilled = null, argument 291 return Each::ofLimit($iterable, $concurrency, $onFulfilled, $onRejected); 301 * @param callable $onFulfilled 310 callable $onFulfilled = null argument 312 return Each::ofLimitAll($iterable, $concurrency, $onFulfilled);
|
H A D | FulfilledPromise.php | 27 callable $onFulfilled = null, argument 31 if (!$onFulfilled) { 38 $queue->add(static function () use ($p, $value, $onFulfilled) { 41 $p->resolve($onFulfilled($value));
|
H A D | EachPromise.php | 22 private $onFulfilled; variable in GuzzleHttp\\Promise\\EachPromise 63 $this->onFulfilled = $config['fulfilled']; 126 $this->onFulfilled = $this->onRejected = null; 176 if ($this->onFulfilled) { 178 $this->onFulfilled,
|
H A D | PromiseInterface.php | 24 * @param callable $onFulfilled Invoked when the promise fulfills. 30 callable $onFulfilled = null, argument
|
H A D | Promise.php | 32 callable $onFulfilled = null, argument 37 $this->handlers[] = [$p, $onFulfilled, $onRejected]; 46 return $onFulfilled ? $promise->then($onFulfilled) : $promise;
|
H A D | Coroutine.php | 90 callable $onFulfilled = null, argument 93 return $this->result->then($onFulfilled, $onRejected);
|
H A D | RejectedPromise.php | 27 callable $onFulfilled = null, argument
|
/plugin/elasticsearch/vendor/react/promise/src/ |
H A D | FulfilledPromise.php | 21 public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 23 if (null === $onFulfilled) { 28 return resolve($onFulfilled($this->value)); 36 public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 38 if (null === $onFulfilled) { 42 $result = $onFulfilled($this->value);
|
H A D | Promise.php | 28 public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 31 return $this->result->then($onFulfilled, $onRejected, $onProgress); 35 return new static($this->resolver($onFulfilled, $onRejected, $onProgress)); 47 $this->resolver($onFulfilled, $onRejected, $onProgress), 58 public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 61 return $this->result->done($onFulfilled, $onRejected, $onProgress); 64 $this->handlers[] = static function (ExtendedPromiseInterface $promise) use ($onFulfilled, $onRejected) { 66 ->done($onFulfilled, $onRejected); 115 private function resolver(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 117 return function ($resolve, $reject, $notify) use ($onFulfilled, [all...] |
H A D | LazyPromise.php | 18 public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 20 return $this->promise()->then($onFulfilled, $onRejected, $onProgress); 23 public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 25 return $this->promise()->done($onFulfilled, $onRejected, $onProgress);
|
H A D | PromiseInterface.php | 14 * * `$onFulfilled` will be invoked once the promise is fulfilled and passed 23 * `$onFulfilled` or `$onRejected`, whichever is called, or will reject with 29 * 1. Only one of `$onFulfilled` or `$onRejected` will be called, 31 * 2. `$onFulfilled` and `$onRejected` will never be called more 35 * @param callable|null $onFulfilled 40 public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null); argument
|
H A D | ExtendedPromiseInterface.php | 11 * It will cause a fatal error if either `$onFulfilled` or 17 * @param callable|null $onFulfilled 22 public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null); argument
|
H A D | RejectedPromise.php | 21 public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument 36 public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) argument
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
H A D | MockHandler.php | 20 private $onFulfilled; variable in GuzzleHttp\\Handler\\MockHandler 28 * @param callable $onFulfilled Callback to invoke when the return value is fulfilled. 35 callable $onFulfilled = null, argument 38 return HandlerStack::create(new self($queue, $onFulfilled, $onRejected)); 47 * @param callable $onFulfilled Callback to invoke when the return value is fulfilled. 52 callable $onFulfilled = null, argument 55 $this->onFulfilled = $onFulfilled; 100 if ($this->onFulfilled) { 101 call_user_func($this->onFulfilled, $value);
|
/plugin/davcal/vendor/sabre/event/lib/ |
H A D | Promise.php | 100 * @param callable $onFulfilled 104 function then(callable $onFulfilled = null, callable $onRejected = null) { argument 109 $this->subscribers[] = [$subPromise, $onFulfilled, $onRejected]; 112 $this->invokeCallback($subPromise, $onFulfilled);
|
/plugin/webdav/vendor/sabre/event/lib/ |
H A D | Promise.php | 88 * @param callable $onFulfilled 92 function then(callable $onFulfilled = null, callable $onRejected = null) { argument 103 $this->subscribers[] = [$subPromise, $onFulfilled, $onRejected]; 108 $this->invokeCallback($subPromise, $onFulfilled);
|
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/ |
H A D | CompletedFutureValue.php | 61 callable $onFulfilled = null, argument 65 return $this->promise()->then($onFulfilled, $onRejected, $onProgress);
|
H A D | BaseFutureTrait.php | 84 callable $onFulfilled = null, argument 88 return $this->wrappedPromise->then($onFulfilled, $onRejected, $onProgress);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | RetryMiddleware.php | 72 $this->onFulfilled($request, $options), 82 private function onFulfilled(RequestInterface $req, array $options) function in GuzzleHttp\\RetryMiddleware
|
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/ |
H A D | Core.php | 328 * @param callable $onFulfilled Invoked when the future fulfilled 336 callable $onFulfilled = null, argument 341 $future->then($onFulfilled, $onRejected, $onProgress),
|
/plugin/revealjs/lib/js/ |
H A D | promise.js | 2 …onFulfilled:n.onRejected;if(null!==t){var o;try{o=t(e._value)}catch(f){return void i(n.promise,f)}…
|
/plugin/authgooglesheets/vendor/guzzlehttp/promises/ |
H A D | README.md | 43 `$onFulfilled` followed by an optional `$onRejected` function. 51 // $onFulfilled 72 all of the onFulfilled callbacks (resolving a promise with a rejected promise 90 // Resolving the promise triggers the $onFulfilled callbacks and outputs 162 `GuzzleHttp\Promise\RejectedPromise` in either an `$onFulfilled` or 180 does not return a rejected promise, downstream `$onFulfilled` callbacks are 315 - `then(callable $onFulfilled, callable $onRejected) : PromiseInterface`
|
/plugin/elasticsearch/vendor/react/promise/ |
H A D | README.md | 128 having `$onFulfilled` (which they registered via `$promise->then()`) called with 183 $transformedPromise = $promise->then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null); 192 * `$onFulfilled` will be invoked once the promise is fulfilled and passed 201 `$onFulfilled` or `$onRejected`, whichever is called, or will reject with 207 1. Only one of `$onFulfilled` or `$onRejected` will be called, 209 2. `$onFulfilled` and `$onRejected` will never be called more 235 $promise->done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null); 241 It will cause a fatal error if either `$onFulfilled` or `$onRejected` throw or 791 `$onFulfilled` or `$onRejected` callbacks you provide to done, it will be
|
/plugin/xlsx2dw/packages/jszip/ |
H A D | jszip.js | 4357 Promise.prototype.then = function (onFulfilled, onRejected) { argument 4358 if (typeof onFulfilled !== 'function' && this.state === FULFILLED || 4364 var resolver = this.state === FULFILLED ? onFulfilled : onRejected; 4367 this.queue.push(new QueueItem(promise, onFulfilled, onRejected)); 4372 function QueueItem(promise, onFulfilled, onRejected) { argument 4374 if (typeof onFulfilled === 'function') { 4375 this.onFulfilled = onFulfilled; 4387 unwrap(this.promise, this.onFulfilled, value);
|