/third_party/typescript/tests/cases/compiler/ |
D | promisePermutations.ts | 2 …then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method 3 …then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method 4 …then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method 5 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method 10 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method 11 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method 12 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method 13 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
|
D | promisePermutations3.ts | 4 …then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method 5 …then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method 6 …then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method 7 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method 12 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
|
D | promisePermutations2.ts | 4 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method 9 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method 10 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method 11 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method 12 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
|
D | ipromise4.ts | 3 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method 4 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method 5 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method 6 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
|
D | ipromise3.ts | 2 …then<U>(success?: (value: T) => IPromise3<U>, error?: (error: any) => IPromise3<U>, progress?: (pr… method 3 …then<U>(success?: (value: T) => IPromise3<U>, error?: (error: any) => U, progress?: (progress: any… method 4 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise3<U>, progress?: (progress: any… method 5 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
|
D | asyncFunctionsAndStrictNullChecks.ts | 6 …then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?:… method 7 …then<U>(success?: (value: TResult) => IPromise<U>, error?: (error: any) => U, progress?: (progress… method 8 …then<U>(success?: (value: TResult) => U, error?: (error: any) => IPromise<U>, progress?: (progress… method 9 …then<U>(success?: (value: TResult) => U, error?: (error: any) => U, progress?: (progress: any) => … method
|
D | ipromise2.ts | 3 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method 4 …then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method 5 …then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method 6 …then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void )… method
|
D | promiseIdentity.ts | 2 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 15 …then<U, W>(callback: (x: V) => Promise2<U, T>): Promise2<T, W>; // Uses V instead of T in callback… method
|
D | promiseIdentityWithAny2.ts | 2 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 17 …then<U, W>(callback: (x: T) => Promise2<string, any>): Promise2<any, any>; // Uses string instead … method
|
D | bluebirdStaticThis.ts | 113 …then<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
|
D | functionOverloadsOnGenericArity2.ts | 2 then(p: string): string; method 3 then<U>(p: string): string; method 4 then<U, T>(p: string): Date; method
|
D | overloadOnGenericArity.ts | 2 then<U>(p: string): string; method 3 then(p: string): Date; // Error: Overloads cannot differ only by return type method
|
D | promises.ts | 2 then<U>(success?: (value: T) => U): Promise<U>; method 3 then<U>(success?: (value: T) => Promise<U>): Promise<U>; method
|
D | promiseIdentityWithAny.ts | 2 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
|
D | promiseIdentityWithConstraints.ts | 2 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
|
D | promiseIdentity2.ts | 2 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
|
D | chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts | 3 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
|
D | promisesWithConstraints.ts | 2 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/ |
D | genericCallToOverloadedMethodWithOverloadedArguments.ts | 4 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 62 …then<U>(cb: (x: T) => Promise<U>, error?: (error: any) => U, progress?: (preservation: any) => voi… method
|
/third_party/boost/boost/detail/ |
D | select_type.hpp | 26 struct then { typedef T type; }; argument 33 struct then { typedef F type; }; struct
|
/third_party/node/deps/npm/node_modules/ignore-walk/ |
D | index.js | 82 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/ |
D | es6-promise.d.ts | 2 …then <U> (onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => U | Thenable<U… method 3 …then <U> (onFulfilled?: (value: R) => U | Thenable<U>, onRejected?: (error: any) => void): Thenabl… method
|
/third_party/cef/include/base/ |
D | cef_callback.h | 144 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/ |
D | if_else.hpp | 44 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/ |
D | promiseChaining.js | 4 then<S>(cb: (x: T) => S): Chain<S> { field in Chain 19 Chain.prototype.then = function (cb) { method in Chain
|