/third_party/typescript/tests/baselines/reference/ |
D | nullishCoalescingOperator11.types | 2 declare const f11: 1 | 0 | '' | null | undefined; 3 >f11 : "" | 0 | 1 | null | undefined 6 let g11 = f11 ?? f11.toFixed() 8 >f11 ?? f11.toFixed() : any 9 >f11 : "" | 0 | 1 | null | undefined 10 >f11.toFixed() : any 11 >f11.toFixed : any 12 >f11 : null | undefined
|
D | genericDefaultsErrors.types | 17 declare function f11<T, U, V = number>(): void; 18 >f11 : <T, U, V = number>() => void 20 f11(); // ok 21 >f11() : void 22 >f11 : <T, U, V = number>() => void 24 f11<1>(); // error 25 >f11<1>() : void 26 >f11 : <T, U, V = number>() => void 28 f11<1, 2>(); // ok 29 >f11<1, 2>() : void [all …]
|
D | nullishCoalescingOperator11.symbols | 2 declare const f11: 1 | 0 | '' | null | undefined; 3 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13)) 5 let g11 = f11 ?? f11.toFixed() 7 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13)) 8 >f11 : Symbol(f11, Decl(nullishCoalescingOperator11.ts, 0, 13))
|
D | genericDefaultsErrors.js | 9 declare function f11<T, U, V = number>(): void; 10 f11(); // ok 11 f11<1>(); // error 12 f11<1, 2>(); // ok 13 f11<1, 2, 3>(); // ok 14 f11<1, 2, 3, 4>(); // error 46 f11(); // ok 47 f11(); // error 48 f11(); // ok 49 f11(); // ok [all …]
|
D | nullishCoalescingOperator11.js | 2 declare const f11: 1 | 0 | '' | null | undefined; 4 let g11 = f11 ?? f11.toFixed() 11 var g11 = f11 !== null && f11 !== void 0 ? f11 : f11.toFixed();
|
D | genericRestParameters2.js | 14 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void; 31 f11(42, "hello"); 32 f11(42, "hello", true); 33 f11(42, "hello", true, false); 34 f11(t1[0], t1[1], t1[2], t1[3]); 35 f11(...t1); 36 f11(42, ...t2); 37 f11(42, "hello", ...t3); 38 f11(42, "hello", true, ...t4); 39 f11(42, "hello", true, ...t4, false, ...t3); [all …]
|
D | genericRestParameters1.js | 53 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; 55 const z10 = f11(42, "hello", true); // [42, "hello", true] 56 const z11 = f11(42, "hello"); // [42, "hello"] 57 const z12 = f11(42); // [42] 58 const z13 = f11(); // [] 59 const z14 = f11(...t3); // [number, string, boolean] 60 const z15 = f11(42, ...t2); // [42, string, boolean] 61 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean] 62 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true] 63 const z18 = f11(...ns, true); // (string | number | true)[] [all …]
|
D | genericDefaultsErrors.symbols | 27 declare function f11<T, U, V = number>(): void; 28 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54)) 33 f11(); // ok 34 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54)) 36 f11<1>(); // error 37 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54)) 39 f11<1, 2>(); // ok 40 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54)) 42 f11<1, 2, 3>(); // ok 43 >f11 : Symbol(f11, Decl(genericDefaultsErrors.ts, 5, 54)) [all …]
|
D | genericRestParameters2.symbols | 46 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void; 47 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11)) 108 f11(42, "hello"); 109 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11)) 111 f11(42, "hello", true); 112 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11)) 114 f11(42, "hello", true, false); 115 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11)) 117 f11(t1[0], t1[1], t1[2], t1[3]); 118 >f11 : Symbol(f11, Decl(genericRestParameters2.ts, 12, 11)) [all …]
|
D | genericRestParameters2.types | 46 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void; 47 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void 148 f11(42, "hello"); 149 >f11(42, "hello") : void 150 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void 154 f11(42, "hello", true); 155 >f11(42, "hello", true) : void 156 >f11 : (a: number, x_0: string, ...x_1: boolean[]) => void 161 f11(42, "hello", true, false); 162 >f11(42, "hello", true, false) : void [all …]
|
D | nullishCoalescingOperator11.errors.txt | 1 …shCoalescingOperator/nullishCoalescingOperator11.ts(3,18): error TS18049: 'f11' is possibly 'null'… 5 declare const f11: 1 | 0 | '' | null | undefined; 7 let g11 = f11 ?? f11.toFixed() 9 !!! error TS18049: 'f11' is possibly 'null' or 'undefined'.
|
D | genericRestParameters1.symbols | 195 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; 196 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1)) 202 const z10 = f11(42, "hello", true); // [42, "hello", true] 204 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1)) 206 const z11 = f11(42, "hello"); // [42, "hello"] 208 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1)) 210 const z12 = f11(42); // [42] 212 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1)) 214 const z13 = f11(); // [] 216 >f11 : Symbol(f11, Decl(genericRestParameters1.ts, 49, 1)) [all …]
|
D | genericRestParameters1.types | 285 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; 286 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T 289 const z10 = f11(42, "hello", true); // [42, "hello", true] 291 >f11(42, "hello", true) : [42, "hello", true] 292 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T 297 const z11 = f11(42, "hello"); // [42, "hello"] 299 >f11(42, "hello") : [42, "hello"] 300 >f11 : <T extends (string | number | boolean)[]>(...args: T) => T 304 const z12 = f11(42); // [42] 306 >f11(42) : [42] [all …]
|
D | genericRestParameters1.errors.txt | 60 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; 62 const z10 = f11(42, "hello", true); // [42, "hello", true] 63 const z11 = f11(42, "hello"); // [42, "hello"] 64 const z12 = f11(42); // [42] 65 const z13 = f11(); // [] 66 const z14 = f11(...t3); // [number, string, boolean] 67 const z15 = f11(42, ...t2); // [42, string, boolean] 68 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean] 69 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true] 70 const z18 = f11(...ns, true); // (string | number | true)[] [all …]
|
D | strictOptionalProperties1.js | 135 declare function f11<T>(x: { p?: T }): T; 137 f11(ox1); // string 138 f11(ox2); // string | undefined 139 f11(ox3); // string 140 f11(ox4); // string | undefined 340 f11(ox1); // string 341 f11(ox2); // string | undefined 342 f11(ox3); // string 343 f11(ox4); // string | undefined 437 declare function f11<T>(x: {
|
D | genericDefaults.js | 203 declare function f11<T, U = T | B>(a?: T, b?: U): [T, U]; 205 f11(); 206 f11(a); 207 f11(a, a); 208 f11(a, b); 209 f11(a, c); 211 f11<A>(); 212 f11<A>(a); 213 f11<A>(a, a); 214 f11<A>(a, b); [all …]
|
D | disallowLineTerminatorBeforeArrow.js | 23 var f11 = (a: number): number /* function 30 var f11 = (a: number 112 var f11 = function (a) { return a; }; 115 var f11 = function (a) { return a; };
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters1.ts | 55 declare function f11<T extends (string | number | boolean)[]>(...args: T): T; function 57 const z10 = f11(42, "hello", true); // [42, "hello", true] 58 const z11 = f11(42, "hello"); // [42, "hello"] 59 const z12 = f11(42); // [42] 60 const z13 = f11(); // [] 61 const z14 = f11(...t3); // [number, string, boolean] 62 const z15 = f11(42, ...t2); // [42, string, boolean] 63 const z16 = f11(42, "hello", ...t1); // [42, "hello", boolean] 64 const z17 = f11(42, "hello", true, ...t0); // [42, "hello", true] 65 const z18 = f11(...ns, true); // (string | number | true)[] [all …]
|
D | genericRestParameters2.ts | 16 declare let f11: (a: number, ...x: [string, ...boolean[]]) => void; variable 33 f11(42, "hello"); 34 f11(42, "hello", true); 35 f11(42, "hello", true, false); 36 f11(t1[0], t1[1], t1[2], t1[3]); 37 f11(...t1); 38 f11(42, ...t2); 39 f11(42, "hello", ...t3); 40 f11(42, "hello", true, ...t4); 41 f11(42, "hello", true, ...t4, false, ...t3);
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcMisc.cpp | 112 GLuint f11; in floatToUnisgnedF11() local 125 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(0x0000003F); in floatToUnisgnedF11() 130 f11 = 0x00000000; in floatToUnisgnedF11() 133 return f11; in floatToUnisgnedF11() 150 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(mantissa >> 17); in floatToUnisgnedF11() 166 f11 = mantissa; in floatToUnisgnedF11() 170 f11 = ((exp - FLOAT11_MIN_BIASED_EXP_AS_SINGLE_FP_EXP) >> 17) | (mantissa >> 17); in floatToUnisgnedF11() 173 return f11; in floatToUnisgnedF11() 308 float unsignedF11ToFloat(GLuint f11) in unsignedF11ToFloat() argument 310 unsigned int mantissa = (unsigned int)(f11 & ((1 << 6) - 1)); in unsignedF11ToFloat() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | genericDefaultsErrors.ts | 10 declare function f11<T, U, V = number>(): void; 11 f11(); // ok 12 f11<1>(); // error 13 f11<1, 2>(); // ok 14 f11<1, 2, 3>(); // ok 15 f11<1, 2, 3, 4>(); // error
|
D | strictOptionalProperties1.ts | 138 declare function f11<T>(x: { p?: T }): T; function 140 f11(ox1); // string 141 f11(ox2); // string | undefined 142 f11(ox3); // string 143 f11(ox4); // string | undefined
|
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
D | nullishCoalescingOperator11.ts | 3 declare const f11: 1 | 0 | '' | null | undefined; constant 5 let g11 = f11 ?? f11.toFixed() variable
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.PointSize.geom.out | 8 0:8 Function Definition: @main(u1[3];struct-S-f11; ( temp void) 28 0:8 Function Call: @main(u1[3];struct-S-f11; ( temp void) 45 0:8 Function Definition: @main(u1[3];struct-S-f11; ( temp void) 65 0:8 Function Call: @main(u1[3];struct-S-f11; ( temp void) 90 Name 16 "@main(u1[3];struct-S-f11;" 129 34: 2 FunctionCall 16(@main(u1[3];struct-S-f11;) 31(param) 33(param) 134 16(@main(u1[3];struct-S-f11;): 2 Function None 13
|
/third_party/cmsis/CMSIS/DSP/Source/InterpolationFunctions/ |
D | arm_bilinear_interp_f32.c | 107 float32_t f00, f01, f10, f11; in arm_bilinear_interp_f32() local 137 f11 = pData[index + 1]; in arm_bilinear_interp_f32() 143 b4 = f00 - f01 - f10 + f11; in arm_bilinear_interp_f32()
|