Home
last modified time | relevance | path

Searched refs:f04 (Results 1 – 25 of 27) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DgenericDefaults.js57 declare function f04<T, U = B>(a?: T, b?: U): [T, U];
59 f04();
60 f04(a);
61 f04(a, b);
62 f04(a, c);
64 f04<A>();
65 f04<A>(a);
66 f04<A>(a, b);
68 f04<A, B>();
69 f04<A, B>(a);
[all …]
DgenericDefaults.errors.txt72 declare function f04<T, U = B>(a?: T, b?: U): [T, U];
74 f04();
75 f04(a);
76 f04(a, b);
77 f04(a, c);
79 f04<A>();
80 f04<A>(a);
81 f04<A>(a, b);
83 f04<A, B>();
84 f04<A, B>(a);
[all …]
DgenericDefaults.types162 declare function f04<T, U = B>(a?: T, b?: U): [T, U];
163 >f04 : <T, U = B>(a?: T, b?: U) => [T, U]
168 f04();
169 >f04() : [unknown, B]
170 >f04 : <T, U = B>(a?: T, b?: U) => [T, U]
172 f04(a);
173 >f04(a) : [A, B]
174 >f04 : <T, U = B>(a?: T, b?: U) => [T, U]
177 f04(a, b);
178 >f04(a, b) : [A, B]
[all …]
DgenericDefaultsErrors.types8 declare function f04<T extends string, U extends number = T>(): void; // error
9 >f04 : <T extends string, U extends number = T>() => void
DgenericDefaults.symbols177 declare function f04<T, U = B>(a?: T, b?: U): [T, U];
178 >f04 : Symbol(f04, Decl(genericDefaults.ts, 52, 10))
190 f04();
191 >f04 : Symbol(f04, Decl(genericDefaults.ts, 52, 10))
193 f04(a);
194 >f04 : Symbol(f04, Decl(genericDefaults.ts, 52, 10))
197 f04(a, b);
198 >f04 : Symbol(f04, Decl(genericDefaults.ts, 52, 10))
202 f04(a, c);
203 >f04 : Symbol(f04, Decl(genericDefaults.ts, 52, 10))
[all …]
DgenericDefaultsErrors.symbols9 declare function f04<T extends string, U extends number = T>(): void; // error
10 >f04 : Symbol(f04, Decl(genericDefaultsErrors.ts, 2, 56))
DstrictBindCallApply1.js14 let f04 = overloaded.bind(undefined); // typeof overloaded variable
82 var f04 = overloaded.bind(undefined); // typeof overloaded
DgenericDefaultsErrors.js5 declare function f04<T extends string, U extends number = T>(): void; // error
DgenericRestParameters2.js11 declare let f04: (a: number, b: string, c: boolean, ...x: []) => void;
140 declare let f04: (a: number, b: string, c: boolean, ...x: []) => void;
DgenericRestParameters2.symbols35 declare let f04: (a: number, b: string, c: boolean, ...x: []) => void;
36 >f04 : Symbol(f04, Decl(genericRestParameters2.ts, 9, 11))
DgenericFunctionInference1.js14 const f04 = pipe(list, x => box(x)); constant
258 const f04 = pipe(list, x => box(x)); constant
DgenericRestParameters2.types35 declare let f04: (a: number, b: string, c: boolean, ...x: []) => void;
36 >f04 : (a: number, b: string, c: boolean) => void
DgenericDefaultsErrors.errors.txt35 declare function f04<T extends string, U extends number = T>(): void; // error
DstrictBindCallApply1.symbols50 let f04 = overloaded.bind(undefined); // typeof overloaded
51 >f04 : Symbol(f04, Decl(strictBindCallApply1.ts, 12, 3))
DgenericFunctionInference1.errors.txt18 const f04 = pipe(list, x => box(x));
DgenericFunctionInference1.symbols102 const f04 = pipe(list, x => box(x));
103 >f04 : Symbol(f04, Decl(genericFunctionInference1.ts, 12, 5))
DstrictBindCallApply1.errors.txt85 let f04 = overloaded.bind(undefined); // typeof overloaded
DgenericFunctionInference1.types71 const f04 = pipe(list, x => box(x));
72 >f04 : <T>(a: T) => { value: T[]; }
/third_party/typescript/tests/cases/compiler/
DgenericDefaults.ts57 declare function f04<T, U = B>(a?: T, b?: U): [T, U];
59 f04();
60 f04(a);
61 f04(a, b);
62 f04(a, c);
64 f04<A>();
65 f04<A>(a);
66 f04<A>(a, b);
68 f04<A, B>();
69 f04<A, B>(a);
[all …]
DgenericDefaultsErrors.ts6 declare function f04<T extends string, U extends number = T>(): void; // error
DgenericFunctionInference1.ts16 const f04 = pipe(list, x => box(x));
/third_party/openssl/test/
Dsanitytest.c33 a04, b04, c04, d04, e04, f04, g04, h04, i04, j04, in test_sanity_enum_size() enumerator
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts13 declare let f04: (a: number, b: string, c: boolean, ...x: []) => void; variable
/third_party/typescript/tests/cases/conformance/functions/
DstrictBindCallApply1.ts15 let f04 = overloaded.bind(undefined); // typeof overloaded
/third_party/elfio/tests/elf_examples/
Dtest_ppc_o.txt52 0000001a 00000f04 R_PPC_ADDR16_LO 00000000 _ZSt4cout + 0

12