Home
last modified time | relevance | path

Searched defs:then (Results 1 – 25 of 151) sorted by relevance

1234567

/third_party/typescript/tests/cases/compiler/
DpromisePermutations.ts2then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method
3then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method
4then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method
5then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
10then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
11then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
12then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
13then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
DpromisePermutations3.ts4then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method
5then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method
6then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method
7then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
12then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
DpromisePermutations2.ts4then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
9then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
10then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
11then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
12then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
Dipromise4.ts3then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
4then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
5then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
6then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
Dipromise3.ts2then<U>(success?: (value: T) => IPromise3<U>, error?: (error: any) => IPromise3<U>, progress?: (pr… method
3then<U>(success?: (value: T) => IPromise3<U>, error?: (error: any) => U, progress?: (progress: any… method
4then<U>(success?: (value: T) => U, error?: (error: any) => IPromise3<U>, progress?: (progress: any… method
5then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
DasyncFunctionsAndStrictNullChecks.ts6then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?:… method
7then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => U, progress?: (progress… method
8then<U>(success?: (value: TResult) => U, error?: (error: any) => IPromise<U>, progress?: (progress… method
9then<U>(success?: (value: TResult) => U, error?: (error: any) => U, progress?: (progress: any) => … method
Dipromise2.ts3then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
4then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
5then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
6then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
DpromiseIdentity.ts2 then<U>(callback: (x: T) => IPromise<U>): IPromise<U>; method
5 then<U>(callback: (x: T) => Promise<U>): Promise<U>; method
12 then<U, W>(callback: (x: T) => IPromise2<U, W>): IPromise2<W, U>; method
15then<U, W>(callback: (x: V) => Promise2<U, T>): Promise2<T, W>; // Uses V instead of T in callback… method
DpromiseIdentityWithAny2.ts2 then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>; method
5 then(callback: (x: T) => Promise<any, any>): Promise<any, any>; method
14 then<U, W>(callback: (x: T) => IPromise2<U, W>): IPromise2<U, W>; method
17then<U, W>(callback: (x: T) => Promise2<string, any>): Promise2<any, any>; // Uses string instead … method
DbluebirdStaticThis.ts113then<U>(onFulfilled: (value: R) => Thenable<U>, onRejected: (error: any) => Thenable<U>): Thenable… method
114 then<U>(onFulfilled: (value: R) => Thenable<U>, onRejected?: (error: any) => U): Thenable<U>; method
115 then<U>(onFulfilled: (value: R) => U, onRejected: (error: any) => Thenable<U>): Thenable<U>; method
116 then<U>(onFulfilled?: (value: R) => U, onRejected?: (error: any) => U): Thenable<U>; method
DfunctionOverloadsOnGenericArity2.ts2 then(p: string): string; method
3 then<U>(p: string): string; method
4 then<U, T>(p: string): Date; method
DoverloadOnGenericArity.ts2 then<U>(p: string): string; method
3 then(p: string): Date; // Error: Overloads cannot differ only by return type method
Dpromises.ts2 then<U>(success?: (value: T) => U): Promise<U>; method
3 then<U>(success?: (value: T) => Promise<U>): Promise<U>; method
DpromiseIdentityWithAny.ts2 then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>; method
5 then<U, W>(callback: (x: T) => Promise<any, any>): Promise<any, any>; method
DpromiseIdentityWithConstraints.ts2 then<U extends T, W extends V>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>; method
5 then<U extends T, W extends V>(callback: (x: T) => Promise<U, W>): Promise<U, W>; method
DpromiseIdentity2.ts2 then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>; method
5 then<U, W>(callback: (x: T) => Promise<T, U>): Promise<T, W>; method
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts3 then<S extends T>(cb: (x: T) => S): Chain<S> { method in Chain
26 then<S extends T>(cb: (x: T) => S): Chain2<S> { method in Chain2
DpromisesWithConstraints.ts2 then<U>(cb: (x: T) => Promise<U>): Promise<U>; method
6 then<U extends { x: any; }>(cb: (x: T) => Promise<U>): Promise<U>; method
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DgenericCallToOverloadedMethodWithOverloadedArguments.ts4 then<U>(cb: (x: T) => Promise<U>): Promise<U>; method
31 then<U>(cb: (x: T) => Promise<U>): Promise<U>; method
32 then<U>(cb: (x: T) => Promise<U>, error?: (error: any) => Promise<U>): Promise<U>; method
60 then<U>(cb: (x: T) => Promise<U>): Promise<U>; method
61 then<U>(cb: (x: T) => Promise<U>, error?: (error: any) => Promise<U>): Promise<U>; method
62then<U>(cb: (x: T) => Promise<U>, error?: (error: any) => U, progress?: (preservation: any) => voi… method
/third_party/boost/boost/detail/
Dselect_type.hpp26 struct then { typedef T type; }; argument
33 struct then { typedef F type; }; struct
/third_party/node/deps/npm/node_modules/ignore-walk/
Dindex.js82 const then = _ => { function
90 addIgnoreFile (file, then) { argument
96 onReadIgnoreFile (file, data, then) { argument
135 const then = _ => { function
148 onstat (st, entry, file, dir, then) { argument
163 stat (entry, file, dir, then) { argument
183 walker (entry, then) { argument
238 addIgnoreFile (file, then) { argument
243 stat (entry, file, dir, then) { argument
249 walker (entry, then) { argument
/third_party/node/deps/npm/node_modules/es6-promise/
Des6-promise.d.ts2then <U> (onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => U | Thenable<U… method
3then <U> (onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => void): Thenabl… method
/third_party/cef/include/base/
Dcef_callback.h144 OnceCallback<ThenR(Args...)> Then(OnceCallback<ThenR(ThenArgs...)> then) && { in Then()
157 RepeatingCallback<ThenR(ThenArgs...)> then) && { in Then()
226 RepeatingCallback<ThenR(ThenArgs...)> then) const& { in Then()
237 RepeatingCallback<ThenR(ThenArgs...)> then) && { in Then()
/third_party/boost/boost/python/detail/
Dif_else.hpp44 class elif_selected<T>::then : public if_selected<T> class in boost::python::detail::elif_selected
52 struct then : if_selected<T> struct
74 struct then : if_unselected struct
/third_party/typescript/tests/baselines/reference/
DpromiseChaining.js4 then<S>(cb: (x: T) => S): Chain<S> { field in Chain
19 Chain.prototype.then = function (cb) { method in Chain

1234567