Home
last modified time | relevance | path

Searched refs:f17 (Results 1 – 25 of 81) sorted by relevance

1234

/third_party/typescript/tests/cases/conformance/es6/destructuring/
DdeclarationsAndAssignments.ts123 function f17({ a = "", b = 0, c = false }) { function
126 f17({});
127 f17({ a: "hello" });
128 f17({ c: true });
129 f17(f15());
/third_party/typescript/tests/baselines/reference/
DdeclarationsAndAssignments.js124 function f17({ a = "", b = 0, c = false }) { function
127 f17({});
128 f17({ a: "hello" });
129 f17({ c: true });
130 f17(f15());
298 function f17(_a) {
301 f17({});
302 f17({ a: "hello" });
303 f17({ c: true });
304 f17(f15());
DgenericDefaults.js315 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U];
317 f17();
318 f17(a);
319 f17(a, a);
320 f17(a, b);
321 f17(a, c);
323 f17<A>();
324 f17<A>(a);
325 f17<A>(a, a);
326 f17<A>(a, b);
[all …]
DdeclarationsAndAssignments.types518 function f17({ a = "", b = 0, c = false }) {
519 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void
528 f17({});
529 >f17({}) : void
530 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void
533 f17({ a: "hello" });
534 >f17({ a: "hello" }) : void
535 >f17 : ({ a, b, c }: { a?: string; b?: number; c?: boolean; }) => void
540 f17({ c: true });
541 >f17({ c: true }) : void
[all …]
DfunctionsMissingReturnStatementsAndExpressions.js83 function f17() {
196 function f17() { function
DsubtypesOfTypeParameterWithConstraints2.js126 function f17<T extends typeof f>(x: T) {
139 function f17<U extends T>(a: U) {
274 function f17(x) { function
285 function f17(a) { function
DinferingFromAny.types82 declare function f17<T, K>(x: {[P in keyof T]: K}): T;
83 >f17 : <T, K>(x: { [P in keyof T]: K; }) => T
192 var a = f17(a);
194 >f17(a) : any
195 >f17 : <T, K>(x: { [P in keyof T]: K; }) => T
DgenericDefaults.errors.txt338 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U];
342 f17();
343 f17(a);
344 f17(a, a);
345 f17(a, b);
346 f17(a, c);
348 f17<A>();
349 f17<A>(a);
350 f17<A>(a, a);
351 f17<A>(a, b);
[all …]
DobjectLiteralErrors.js40 var f17 = { a: 0, get b() { return 1; }, get a() { return 0; } }; variable
86 var f17 = { a: 0, get b() { return 1; }, get a() { return 0; } }; variable
DdeclarationsAndAssignments.symbols378 function f17({ a = "", b = 0, c = false }) {
379 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
385 f17({});
386 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
388 f17({ a: "hello" });
389 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
392 f17({ c: true });
393 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
396 f17(f15());
397 >f17 : Symbol(f17, Decl(declarationsAndAssignments.ts, 120, 1))
DgenericDefaults.types1237 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U];
1238 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U]
1243 f17();
1244 >f17() : [unknown, unknown]
1245 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U]
1247 f17(a);
1248 >f17(a) : [A, A | B]
1249 >f17 : <T = U, U = B | T>(a?: T, b?: U) => [T, U]
1252 f17(a, a);
1253 >f17(a, a) : [A, A]
[all …]
DnullIsSubtypeOfEverythingButUndefined.js73 function f17<T>(x: T) {
162 function f17(x) { function
DfunctionsMissingReturnStatementsAndExpressions.symbols124 function f17() {
125 >f17 : Symbol(f17, Decl(functionsMissingReturnStatementsAndExpressions.ts, 79, 1))
Dparser.asyncGenerators.functionDeclarations.es2018.symbols102 async function * f17() {
103 >f17 : Symbol(f17, Decl(awaitWithValueIsOk.ts, 0, 0))
Dparser.asyncGenerators.functionExpressions.es2018.symbols112 const f17 = async function * () {
113 >f17 : Symbol(f17, Decl(awaitWithValueIsOk.ts, 0, 5))
/third_party/typescript/tests/cases/compiler/
DgenericDefaults.ts315 declare function f17<T = U, U = T | B>(a?: T, b?: U): [T, U];
317 f17();
318 f17(a);
319 f17(a, a);
320 f17(a, b);
321 f17(a, c);
323 f17<A>();
324 f17<A>(a);
325 f17<A>(a, a);
326 f17<A>(a, b);
[all …]
DfunctionsMissingReturnStatementsAndExpressions.ts86 function f17() { function
/third_party/skia/resources/sksl/runtime/
DLargeProgram_StackDepth.rts41 void f17() { f18(); }
42 void f16() { f17(); }
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-param-init4.js138 var f17 = ([[a]] = a) => function
142 f17([[2]])
/third_party/skia/resources/sksl/runtime_errors/
DProgramTooLarge_StackDepth.rts44 void f17() { f18(); }
45 void f16() { f17(); }
/third_party/typescript/tests/cases/conformance/salsa/
DinferingFromAny.ts24 declare function f17<T, K>(x: {[P in keyof T]: K}): T;
45 var a = f17(a);
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/
DsubtypesOfTypeParameterWithConstraints2.ts125 function f17<T extends typeof f>(x: T) { function
138 function f17<U extends T>(a: U) {
/third_party/typescript/tests/cases/conformance/parser/ecmascript2018/asyncGenerators/
Dparser.asyncGenerators.functionDeclarations.es2018.ts67 async function * f17() { generator
Dparser.asyncGenerators.functionExpressions.es2018.ts67 const f17 = async function * () { constant
/third_party/libjpeg-turbo/simd/mips/
Djsimd_dspr2_asm.h77 #define f17 $f17 macro

1234