/third_party/typescript/tests/baselines/reference/ |
D | namespaceMergedWithFunctionWithOverloadsUsage.types | 3 >X : { (opts?: X.Whatever): void; (cb: Function, opts?: X.Whatever): void; } 7 >X : { (opts?: X.Whatever): void; (cb: Function, opts?: X.Whatever): void; } 12 interface Whatever { 18 declare function Foo(opts?: Foo.Whatever): void; 19 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; } 20 >opts : Foo.Whatever 23 declare function Foo(cb: Function, opts?: Foo.Whatever): void; 24 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; } 26 >opts : Foo.Whatever 30 >Foo : { (opts?: Foo.Whatever): void; (cb: Function, opts?: Foo.Whatever): void; }
|
D | namespaceMergedWithFunctionWithOverloadsUsage.errors.txt | 2 Overload 1 of 2, '(opts?: Whatever): void', gave the following error. 3 Argument of type 'number' is not assignable to parameter of type 'Whatever'. 4 Overload 2 of 2, '(cb: Function, opts?: Whatever): void', gave the following error. 14 !!! error TS2769: Overload 1 of 2, '(opts?: Whatever): void', gave the following error. 15 !!! error TS2769: Argument of type 'number' is not assignable to parameter of type 'Whatever'. 16 !!! error TS2769: Overload 2 of 2, '(cb: Function, opts?: Whatever): void', gave the following er… 20 interface Whatever { 25 declare function Foo(opts?: Foo.Whatever): void; 26 declare function Foo(cb: Function, opts?: Foo.Whatever): void;
|
D | namespaceMergedWithFunctionWithOverloadsUsage.symbols | 12 interface Whatever { 13 >Whatever : Symbol(Whatever, Decl(file.d.ts, 0, 23)) 16 >prop : Symbol(Whatever.prop, Decl(file.d.ts, 1, 24)) 20 declare function Foo(opts?: Foo.Whatever): void; 24 >Whatever : Symbol(Foo.Whatever, Decl(file.d.ts, 0, 23)) 26 declare function Foo(cb: Function, opts?: Foo.Whatever): void; 32 >Whatever : Symbol(Foo.Whatever, Decl(file.d.ts, 0, 23))
|
D | namespaceMergedWithFunctionWithOverloadsUsage.js | 5 interface Whatever { 10 declare function Foo(opts?: Foo.Whatever): void; 11 declare function Foo(cb: Function, opts?: Foo.Whatever): void;
|
D | jsDeclarationsTypedefAndImportTypes.types | 3 * @typedef {string | number} Whatever 48 /** @type {import("./conn").Whatever} */ 51 >this.another : import("tests/cases/conformance/jsdoc/declarations/conn").Whatever 53 >another : import("tests/cases/conformance/jsdoc/declarations/conn").Whatever
|
D | jsDeclarationsTypedefAndImportTypes.js | 79 export { Whatever }; 81 type Whatever = string | number; 94 another: import("./conn").Whatever; field in Wrap
|
D | jsDeclarationsTypedefAndImportTypes.symbols | 3 * @typedef {string | number} Whatever 45 /** @type {import("./conn").Whatever} */
|
/third_party/typescript/tests/cases/compiler/ |
D | namespaceMergedWithFunctionWithOverloadsUsage.ts | 3 interface Whatever { interface 8 declare function Foo(opts?: Foo.Whatever): void; 9 declare function Foo(cb: Function, opts?: Foo.Whatever): void;
|
/third_party/boost/libs/statechart/test/ |
D | TuTest.cpp | 20 void Whatever( const EvX & ) {} in Whatever() function 22 typedef sc::in_state_reaction< EvX, Initial, &Initial::Whatever > reactions;
|
/third_party/node/deps/npm/node_modules/promzard/ |
D | README.md | 48 module.exports, etc. Whatever that module exports is the result, and it 55 Whatever you put in that `ctx` will of course also be available in the 80 Whatever the final value is, that's what will be put on the resulting
|
/third_party/boost/libs/outcome/doc/src/content/reference/types/basic_result/ |
D | as_failure_lvalue.md | 12 *Complexity*: Whatever that of `error_type`'s copy constructor is.
|
D | as_failure_rvalue.md | 12 *Complexity*: Whatever that of `error_type`'s move constructor is.
|
D | equality_failure_type.md | 12 *Complexity*: Whatever the underlying `operator==` has. Constexpr and noexcept of underlying operat…
|
D | inequality_success_type.md | 12 *Complexity*: Whatever the underlying `operator==` has. Constexpr and noexcept of underlying operat…
|
D | inequality_failure_type.md | 12 *Complexity*: Whatever the underlying `operator!=` has. Constexpr and noexcept of underlying operat…
|
D | equality_success_type.md | 12 *Complexity*: Whatever the underlying `operator!=` has. Constexpr and noexcept of underlying operat…
|
/third_party/boost/libs/outcome/doc/src/content/reference/types/basic_outcome/ |
D | as_failure_lvalue.md | 12 *Complexity*: Whatever that of `error_type`'s and/or `exception_type`'s copy constructor is.
|
D | inequality_success_type.md | 12 *Complexity*: Whatever the underlying `operator==` has. Constexpr and noexcept of underlying operat…
|
D | as_failure_rvalue.md | 12 *Complexity*: Whatever that of `error_type`'s and/or `exception_type`'s move constructor is.
|
D | equality_success_type.md | 12 *Complexity*: Whatever the underlying `operator!=` has. Constexpr and noexcept of underlying operat…
|
D | inequality_basic_outcome.md | 12 *Complexity*: Whatever the underlying `operator!=` have. Constexpr and noexcept of underlying opera…
|
D | equality_basic_result.md | 12 *Complexity*: Whatever the underlying `operator==` have. Constexpr and noexcept of underlying opera…
|
D | equality_failure_type.md | 12 *Complexity*: Whatever the underlying `operator==` has. Constexpr and noexcept of underlying operat…
|
/third_party/boost/libs/range/doc/reference/adaptors/ |
D | filtered.qbk | 16 * [*Throws:] Whatever the copy constructor of `pred` might throw.
|
D | adjacent_filtered.qbk | 16 * [*Throws:] Whatever the copy constructor of `bi_pred` might throw.
|