/third_party/typescript/tests/baselines/reference/ |
D | genericRestParameters2.js | 16 declare let f13: (a: number, b: string, ...c: boolean[]) => void; 51 f13(42, "hello"); 52 f13(42, "hello", true); 53 f13(42, "hello", true, false); 54 f13(t1[0], t1[1], t1[2], t1[3]); 55 f13(...t1); 56 f13(42, ...t2); 57 f13(42, "hello", ...t3); 58 f13(42, "hello", true, ...t4); 59 f13(42, "hello", true, ...t4, false, ...t3); [all …]
|
D | genericRestParameters2.symbols | 57 declare let f13: (a: number, b: string, ...c: boolean[]) => void; 58 >f13 : Symbol(f13, Decl(genericRestParameters2.ts, 14, 11)) 186 f13(42, "hello"); 187 >f13 : Symbol(f13, Decl(genericRestParameters2.ts, 14, 11)) 189 f13(42, "hello", true); 190 >f13 : Symbol(f13, Decl(genericRestParameters2.ts, 14, 11)) 192 f13(42, "hello", true, false); 193 >f13 : Symbol(f13, Decl(genericRestParameters2.ts, 14, 11)) 195 f13(t1[0], t1[1], t1[2], t1[3]); 196 >f13 : Symbol(f13, Decl(genericRestParameters2.ts, 14, 11)) [all …]
|
D | genericRestParameters2.types | 57 declare let f13: (a: number, b: string, ...c: boolean[]) => void; 58 >f13 : (a: number, b: string, ...c: boolean[]) => void 306 f13(42, "hello"); 307 >f13(42, "hello") : void 308 >f13 : (a: number, b: string, ...c: boolean[]) => void 312 f13(42, "hello", true); 313 >f13(42, "hello", true) : void 314 >f13 : (a: number, b: string, ...c: boolean[]) => void 319 f13(42, "hello", true, false); 320 >f13(42, "hello", true, false) : void [all …]
|
D | strictOptionalProperties1.js | 149 declare function f13<T>(x: Partial<T>): T; 151 f13(ox1); // { p: string } 152 f13(ox2); // { p: string | undefined } 153 f13(ox3); // { p: string } 154 f13(ox4); // { p: string | undefined } 156 f13(tx1); // [string] 157 f13(tx2); // [string | undefined] 158 f13(tx3); // [string] 159 f13(tx4); // [string | undefined] 348 f13(ox1); // { p: string } [all …]
|
D | strictOptionalProperties1.types | 592 declare function f13<T>(x: Partial<T>): T; 593 >f13 : <T>(x: Partial<T>) => T 596 f13(ox1); // { p: string } 597 >f13(ox1) : { p: string; } 598 >f13 : <T>(x: Partial<T>) => T 601 f13(ox2); // { p: string | undefined } 602 >f13(ox2) : { p: string | undefined; } 603 >f13 : <T>(x: Partial<T>) => T 606 f13(ox3); // { p: string } 607 >f13(ox3) : { p: string; } [all …]
|
D | strictOptionalProperties1.symbols | 485 declare function f13<T>(x: Partial<T>): T; 486 >f13 : Symbol(f13, Decl(strictOptionalProperties1.ts, 145, 9)) 493 f13(ox1); // { p: string } 494 >f13 : Symbol(f13, Decl(strictOptionalProperties1.ts, 145, 9)) 497 f13(ox2); // { p: string | undefined } 498 >f13 : Symbol(f13, Decl(strictOptionalProperties1.ts, 145, 9)) 501 f13(ox3); // { p: string } 502 >f13 : Symbol(f13, Decl(strictOptionalProperties1.ts, 145, 9)) 505 f13(ox4); // { p: string | undefined } 506 >f13 : Symbol(f13, Decl(strictOptionalProperties1.ts, 145, 9)) [all …]
|
D | genericDefaults.js | 238 declare function f13<T = U, U = B>(a?: T, b?: U): [T, U]; 240 f13(); 241 f13(a); 242 f13(a, b); 243 f13(a, c); 245 f13<A>(); 246 f13<A>(a); 247 f13<A>(a, b); 249 f13<A, C>(); 250 f13<A, C>(a); [all …]
|
D | renamingDestructuredPropertyInFunctionType3.symbols | 22 const f13 = ({ [sym]: string }: O) => { }; 23 >f13 : Symbol(f13, Decl(renamingDestructuredPropertyInFunctionType3.ts, 5, 5))
|
D | renamingDestructuredPropertyInFunctionType3.js | 7 const f13 = ({ [sym]: string }: O) => { }; function 13 const f13 = ({ [sym]: string }) => { }; function
|
D | stringLiteralTypeIsSubtypeOfString.js | 86 function f13<T extends String>(x: 'a'); 87 function f13<T extends String>(x: T); 88 function f13<T extends String>(x: any) { } 149 function f13(x) { } function
|
D | renamingDestructuredPropertyInFunctionType3.types | 20 const f13 = ({ [sym]: string }: O) => { }; 21 >f13 : ({ [sym]: string }: O) => void
|
D | functionsMissingReturnStatementsAndExpressions.js | 59 function f13(): any { 177 function f13() { function
|
D | noImplicitAnyParametersInBareFunctions.js | 41 var f13 = (...r) => ""; function 81 var f13 = function () {
|
D | asyncAwaitIsolatedModules_es2017.js | 21 let f13 = async (): MyPromise<number> => p; function 55 let f13 = async () => p;
|
D | inferingFromAny.types | 63 declare function f13<T, U>(x: T & U): [T, U]; 64 >f13 : <T, U>(x: T & U) => [T, U] 168 var t = f13(a); 170 >f13(a) : [any, any] 171 >f13 : <T, U>(x: T & U) => [T, U]
|
/third_party/typescript/tests/cases/conformance/types/rest/ |
D | genericRestParameters2.ts | 18 declare let f13: (a: number, b: string, ...c: boolean[]) => void; variable 53 f13(42, "hello"); 54 f13(42, "hello", true); 55 f13(42, "hello", true, false); 56 f13(t1[0], t1[1], t1[2], t1[3]); 57 f13(...t1); 58 f13(42, ...t2); 59 f13(42, "hello", ...t3); 60 f13(42, "hello", true, ...t4); 61 f13(42, "hello", true, ...t4, false, ...t3);
|
/third_party/glslang/Test/ |
D | 100.frag | 46 float f13; 47 invariant f13; // ERROR 93 fwidth(f13); // ERROR 102 fwidth(f13); 103 gl_FragDepth = f13; // ERROR 104 gl_FragDepthEXT = f13; // ERROR 111 gl_FragDepth = f13; // ERROR 112 gl_FragDepthEXT = f13; 122 texture2DProj(sExt, vec3(f13)); 134 texture3D(sExt, vec3(f13)); // ERROR [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | strictOptionalProperties1.ts | 152 declare function f13<T>(x: Partial<T>): T; 154 f13(ox1); // { p: string } 155 f13(ox2); // { p: string | undefined } 156 f13(ox3); // { p: string } 157 f13(ox4); // { p: string | undefined } 159 f13(tx1); // [string] 160 f13(tx2); // [string | undefined] 161 f13(tx3); // [string] 162 f13(tx4); // [string | undefined]
|
D | genericDefaults.ts | 238 declare function f13<T = U, U = B>(a?: T, b?: U): [T, U]; 240 f13(); 241 f13(a); 242 f13(a, b); 243 f13(a, c); 245 f13<A>(); 246 f13<A>(a); 247 f13<A>(a, b); 249 f13<A, C>(); 250 f13<A, C>(a); [all …]
|
/third_party/ffmpeg/libavcodec/mips/ |
D | simple_idct_mmi.c | 170 IDCT_ROW_COND_DC($f12,$f13) in ff_simple_idct_8_mmi() 354 IDCT_COL_CASE1($f13, $f13, $f15) in ff_simple_idct_8_mmi() 376 IDCT_COL_CASE2($f13, $f15, $f13, $f15) in ff_simple_idct_8_mmi()
|
/third_party/libffi/testsuite/libffi.call/ |
D | many.c | 14 …t f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13) in many() argument 20 (double) f11, (double) f12, (double) f13); in many() 23 return f1+f2+f3+f4+f5+f6+f7+f8+f9+f10+f11+f12+f13; in many()
|
D | many_double.c | 26 double f13) in many() argument 32 (double) f11, (double) f12, (double) f13); in many() 35 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); in many()
|
D | many_mixed.c | 32 double f13) in many() argument 34 return ((double) (i1 + i2 + i3 + i4 + i5 + i6) + (f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13); in many()
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
D | stringLiteralTypeIsSubtypeOfString.ts | 85 function f13<T extends String>(x: 'a'); function 86 function f13<T extends String>(x: T); 87 function f13<T extends String>(x: any) { }
|
/third_party/libffi/src/ia64/ |
D | unix.S | 71 ldf.fill f13 = [r16], 32 221 (p10) stfs [r16] = f13, 8 245 (p10) stfd [r16] = f13, 16 269 (p10) stfe [r16] = f13, 32 321 stf.spill [r17] = f13, 32 450 (p10) ldfs f13 = [r17], 8 478 (p10) ldfd f13 = [r17], 16 506 (p10) ldfe f13 = [r17], 32
|