Home
last modified time | relevance | path

Searched refs:fn6 (Results 1 – 25 of 56) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
DtypeArgInferenceWithNull.js10 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { }
11 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s…
20 function fn6(n, fun, n2) { } function
21 fn6({ x: null }, function (y) { }, { x: "" }); // y has type { x: any }, but ideally would have typ…
DtypeArgInferenceWithNull.symbols24 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { }
25 >fn6 : Symbol(fn6, Decl(typeArgInferenceWithNull.ts, 6, 17))
36 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s…
37 >fn6 : Symbol(fn6, Decl(typeArgInferenceWithNull.ts, 6, 17))
DtypeArgInferenceWithNull.types25 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { }
26 >fn6 : <T extends { x: string; }>(n: T, fun: (x: T) => void, n2: T) => void
33 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s…
34 >fn6({ x: null }, y => { }, { x: "" }) : void
35 >fn6 : <T extends { x: string; }>(n: T, fun: (x: T) => void, n2: T) => void
DfunctionOverloadErrors.js25 function fn6(...t: any[]);
26 function fn6(x?: any);
27 function fn6() { } function
130 function fn6() { }
DasyncFunctionDeclaration15_es6.js11 async function fn6(): Thenable { } // error
43 function fn6() {
DreturnStatements.js8 function fn6(): Date { return new Date(12); }
49 function fn6() { return new Date(12); } function
DfunctionOverloadErrors.types51 function fn6(...t: any[]);
52 >fn6 : { (...t: any[]): any; (x?: any): any; }
55 function fn6(x?: any);
56 >fn6 : { (...t: any[]): any; (x?: any): any; }
59 function fn6() { }
60 >fn6 : { (...t: any[]): any; (x?: any): any; }
DreturnStatements.symbols19 function fn6(): Date { return new Date(12); }
20 >fn6 : Symbol(fn6, Decl(returnStatements.ts, 5, 40))
DfunctionOverloadErrors.symbols50 function fn6(...t: any[]);
51 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),…
54 function fn6(x?: any);
55 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),…
58 function fn6() { }
59 >fn6 : Symbol(fn6, Decl(functionOverloadErrors.ts, 20, 1), Decl(functionOverloadErrors.ts, 23, 26),…
DasyncFunctionDeclaration15_es6.symbols33 async function fn6(): Thenable { } // error
34 >fn6 : Symbol(fn6, Decl(asyncFunctionDeclaration15_es6.ts, 8, 43))
DasyncFunctionDeclaration15_es5.symbols33 async function fn6(): Thenable { } // error
34 >fn6 : Symbol(fn6, Decl(asyncFunctionDeclaration15_es5.ts, 8, 43))
DreturnStatements.types22 function fn6(): Date { return new Date(12); }
23 >fn6 : () => Date
DasyncFunctionDeclaration15_es5.js11 async function fn6(): Thenable { } // error
53 function fn6() {
DinstanceOfAssignability.js63 function fn6(x: Animal|Mammal) { function
174 function fn6(x) {
DconditionalTypesSimplifyWhenTrivial.js30 function fn6<T>(x: ExcludeWithDefault<T, never>) {
81 function fn6(x) { function
DasyncFunctionDeclaration15_es6.types31 async function fn6(): Thenable { } // error
32 >fn6 : () => Thenable
DasyncFunctionDeclaration15_es5.types31 async function fn6(): Thenable { } // error
32 >fn6 : () => Thenable
/third_party/skia/resources/sksl/inliner/
DExponentialGrowth.sksl8 void fn6() { fn5(); fn5(); fn5(); }
9 void fn7() { fn6(); fn6(); fn6(); }
/third_party/typescript/tests/cases/conformance/functions/
DfunctionOverloadErrors.ts24 function fn6(...t: any[]); function
25 function fn6(x?: any);
26 function fn6() { }
/third_party/typescript/tests/cases/compiler/
DtypeArgInferenceWithNull.ts9 function fn6<T extends { x: string }>(n: T, fun: (x: T) => void, n2: T) { } function
10 fn6({ x: null }, y => { }, { x: "" }); // y has type { x: any }, but ideally would have type { x: s…
/third_party/node/test/js-native-api/test_function/
Dtest_function.c199 napi_value fn6; in Init() local
203 TestBadReturnExceptionPending, NULL, &fn6)); in Init()
220 env, exports, "TestBadReturnExceptionPending", fn6)); in Init()
/third_party/typescript/tests/cases/conformance/statements/returnStatements/
DreturnStatements.ts7 function fn6(): Date { return new Date(12); } function
/third_party/typescript/tests/cases/conformance/async/es6/functionDeclarations/
DasyncFunctionDeclaration15_es6.ts12 async function fn6(): Thenable { } // error method in Thenable
/third_party/typescript/tests/cases/conformance/async/es5/functionDeclarations/
DasyncFunctionDeclaration15_es5.ts13 async function fn6(): Thenable { } // error method in Thenable
/third_party/boost/libs/context/test/
Dtest_apply.cpp94 int fn6( int i, movable && m) { in fn6() function
161 int result = ctx::detail::apply( fn6, std::make_tuple( 1, std::move( m) ) ); in test5()

123