/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/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 | 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 | 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) { } 148 function f13(x) { } function
|
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 | covariantCallbacks.js | 55 function f13(a: AList3, b: BList3) { function 94 function f13(a, b) {
|
D | asyncAwait_es2017.js | 21 let f13 = async (): MyPromise<number> => p; function 62 let f13 = async () => p;
|
D | functionImplementationErrors.js | 70 var f13 = () => { function 177 var f13 = function () {
|
/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/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_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.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_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/typescript/tests/cases/compiler/ |
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/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
|
/third_party/boost/libs/context/src/asm/ |
D | ontop_s390x_sysv_elf_gas.S | 100 std %f13,FP_OFFSET+40(%r15) 125 ld %f13,FP_OFFSET+40(%r15)
|
D | jump_s390x_sysv_elf_gas.S | 96 std %f13,FP_OFFSET+40(%r15) 121 ld %f13,FP_OFFSET+40(%r15)
|
/third_party/mesa3d/src/mesa/sparc/ |
D | norm.S | 138 ld [%o3], %f13 ! LSU 145 fmuls %f3, %f13, %f3 147 fmuls %f5, %f13, %f5 149 fmuls %f7, %f13, %f7 247 ld [%o3], %f13 ! LSU 254 fmuls %f3, %f13, %f3 256 fmuls %f5, %f13, %f5 258 fmuls %f7, %f13, %f7 543 ld [%o3], %f13 ! LSU 548 fmuls %f3, %f13, %f3 [all …]
|
/third_party/skia/resources/sksl/runtime/ |
D | LargeProgram_StackDepth.rts | 45 void f13() { f14(); } 46 void f12() { f13(); }
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | function-param-init4.js | 109 function f13(a = arguments) function 116 f13(undefined, 4)
|