Home
last modified time | relevance | path

Searched refs:f13 (Results 1 – 25 of 240) sorted by relevance

12345678910

/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters2.ts18 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/
DgenericRestParameters2.js16 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 …]
DgenericRestParameters2.symbols57 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 …]
DgenericRestParameters2.types57 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 …]
DgenericDefaults.js238 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 …]
DstringLiteralTypeIsSubtypeOfString.js86 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
DfunctionsMissingReturnStatementsAndExpressions.js59 function f13(): any {
177 function f13() { function
DnoImplicitAnyParametersInBareFunctions.js41 var f13 = (...r) => ""; function
81 var f13 = function () {
DasyncAwaitIsolatedModules_es2017.js21 let f13 = async (): MyPromise<number> => p; function
55 let f13 = async () => p;
DcovariantCallbacks.js55 function f13(a: AList3, b: BList3) { function
94 function f13(a, b) {
DasyncAwait_es2017.js21 let f13 = async (): MyPromise<number> => p; function
62 let f13 = async () => p;
DfunctionImplementationErrors.js70 var f13 = () => { function
177 var f13 = function () {
/third_party/glslang/Test/
D100.frag46 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/
Dsimple_idct_mmi.c170 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/
Dmany_double.c26 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()
Dmany.c14 …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()
Dmany_mixed.c32 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/
DstringLiteralTypeIsSubtypeOfString.ts85 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/
DgenericDefaults.ts238 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/
Dunix.S71 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/
Dontop_s390x_sysv_elf_gas.S100 std %f13,FP_OFFSET+40(%r15)
125 ld %f13,FP_OFFSET+40(%r15)
Djump_s390x_sysv_elf_gas.S96 std %f13,FP_OFFSET+40(%r15)
121 ld %f13,FP_OFFSET+40(%r15)
/third_party/mesa3d/src/mesa/sparc/
Dnorm.S138 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/
DLargeProgram_StackDepth.rts45 void f13() { f14(); }
46 void f12() { f13(); }
/third_party/jerryscript/tests/jerry/es2015/
Dfunction-param-init4.js109 function f13(a = arguments) function
116 f13(undefined, 4)

12345678910