Home
last modified time | relevance | path

Searched refs:f7 (Results 1 – 25 of 484) sorted by relevance

12345678910>>...20

/third_party/typescript/tests/baselines/reference/
DrecursiveFunctionTypes.types105 declare function f7(): typeof f7;
106 >f7 : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f…
107 >f7 : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f…
109 declare function f7(a: typeof f7): () => number;
110 >f7 : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f…
111 >a : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f7
112 >f7 : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f…
114 declare function f7(a: number): number;
115 >f7 : { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f…
118 declare function f7(a?: typeof f7): typeof f7;
[all …]
DrecursiveFunctionTypes.errors.txt15 …Overload 1 of 4, '(a: { (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: typ…
16 … to parameter of type '{ (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: ty…
19f7; (a: typeof f7): () => number; (a: number): number; (a?: typeof f7): typeof f7; }): { (): typeo…
20 … to parameter of type '{ (): typeof f7; (a: typeof f7): () => number; (a: number): number; (a?: ty…
85 declare function f7(): typeof f7;
86 declare function f7(a: typeof f7): () => number;
87 declare function f7(a: number): number;
88 declare function f7(a?: typeof f7): typeof f7;
90 f7("", 3); // error (arity mismatch)
93 f7(""); // ok (function takes an any param)
[all …]
DrecursiveFunctionTypes.symbols98 declare function f7(): typeof f7;
99 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
100 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
102 declare function f7(a: typeof f7): () => number;
103 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
105 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
107 declare function f7(a: number): number;
108 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
111 declare function f7(a?: typeof f7): typeof f7;
112 >f7 : Symbol(f7, Decl(recursiveFunctionTypes.ts, 34, 5), Decl(recursiveFunctionTypes.ts, 36, 33), D…
[all …]
DrecursiveFunctionTypes.js38 declare function f7(): typeof f7;
39 declare function f7(a: typeof f7): () => number;
40 declare function f7(a: number): number;
41 declare function f7(a?: typeof f7): typeof f7;
43 f7("", 3); // error (arity mismatch)
44 f7(""); // ok (function takes an any param)
45 f7(); // ok
72 f7("", 3); // error (arity mismatch)
73 f7(""); // ok (function takes an any param)
74 f7(); // ok
DdestructuringWithLiteralInitializers.js38 function f7({ a: { x = 0, y = 0 } } = { a: {} }) { } function
39 f7();
40 f7({ a: {} });
41 f7({ a: { x: 1 } });
42 f7({ a: { y: 1 } });
43 f7({ a: { x: 1, y: 1 } });
112 function f7(_a) {
115 f7();
116 f7({ a: {} });
117 f7({ a: { x: 1 } });
[all …]
DdestructuringWithLiteralInitializers.symbols111 function f7({ a: { x = 0, y = 0 } } = { a: {} }) { }
112 >f7 : Symbol(f7, Decl(destructuringWithLiteralInitializers.ts, 33, 19))
118 f7();
119 >f7 : Symbol(f7, Decl(destructuringWithLiteralInitializers.ts, 33, 19))
121 f7({ a: {} });
122 >f7 : Symbol(f7, Decl(destructuringWithLiteralInitializers.ts, 33, 19))
125 f7({ a: { x: 1 } });
126 >f7 : Symbol(f7, Decl(destructuringWithLiteralInitializers.ts, 33, 19))
130 f7({ a: { y: 1 } });
131 >f7 : Symbol(f7, Decl(destructuringWithLiteralInitializers.ts, 33, 19))
[all …]
DdestructuringWithLiteralInitializers.types172 function f7({ a: { x = 0, y = 0 } } = { a: {} }) { }
173 >f7 : ({ a: { x, y } }?: { a: { x?: number; y?: number; }; }) => void
183 f7();
184 >f7() : void
185 >f7 : ({ a: { x, y } }?: { a: { x?: number; y?: number; }; }) => void
187 f7({ a: {} });
188 >f7({ a: {} }) : void
189 >f7 : ({ a: { x, y } }?: { a: { x?: number; y?: number; }; }) => void
194 f7({ a: { x: 1 } });
195 >f7({ a: { x: 1 } }) : void
[all …]
DunionTypeCallSignatures3.symbols29 function f7(s: string, ...sRest: string[]) { }
30 >f7 : Symbol(f7, Decl(unionTypeCallSignatures3.ts, 5, 43))
34 var fUnion: typeof f1 | typeof f2 | typeof f3 | typeof f4 | typeof f5 | typeof f6 | typeof f7;
42 >f7 : Symbol(f7, Decl(unionTypeCallSignatures3.ts, 5, 43))
DdefaultArgsInFunctionExpressions.symbols79 var f7 = (t = U) => { return t; };
80 >f7 : Symbol(f7, Decl(defaultArgsInFunctionExpressions.ts, 28, 3))
85 f7().x;
86 >f7().x : Symbol(U.x, Decl(defaultArgsInFunctionExpressions.ts, 24, 14))
87 >f7 : Symbol(f7, Decl(defaultArgsInFunctionExpressions.ts, 28, 3))
DdefaultArgsInFunctionExpressions.js30 var f7 = (t = U) => { return t; }; function
32 f7().x;
69 var f7 = function (t) {
73 f7().x;
DdefaultArgsInFunctionExpressions.types106 var f7 = (t = U) => { return t; };
107 >f7 : (t?: typeof U) => typeof U
113 f7().x;
114 >f7().x : any
115 >f7() : typeof U
116 >f7 : (t?: typeof U) => typeof U
DunionTypeCallSignatures3.types29 function f7(s: string, ...sRest: string[]) { }
30 >f7 : (s: string, ...sRest: string[]) => void
34 var fUnion: typeof f1 | typeof f2 | typeof f3 | typeof f4 | typeof f5 | typeof f6 | typeof f7;
42 >f7 : (s: string, ...sRest: string[]) => void
DunionTypeCallSignatures3.js8 function f7(s: string, ...sRest: string[]) { } function
10 var fUnion: typeof f1 | typeof f2 | typeof f3 | typeof f4 | typeof f5 | typeof f6 | typeof f7;
32 function f7(s) {
Demitter.asyncGenerators.functionExpressions.es5.symbols41 const f7 = async function * () {
42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
Demitter.asyncGenerators.functionExpressions.es2018.symbols41 const f7 = async function * () {
42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
DnoImplicitThisFunctions.symbols44 let f7 = function() { return function() { return this } };
45 >f7 : Symbol(f7, Decl(noImplicitThisFunctions.ts, 20, 3))
Demitter.asyncGenerators.functionDeclarations.es5.symbols41 async function * f7() {
42 >f7 : Symbol(f7, Decl(F7.ts, 0, 0))
Demitter.asyncGenerators.functionExpressions.es2015.symbols41 const f7 = async function * () {
42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
Demitter.asyncGenerators.functionDeclarations.es2015.symbols41 async function * f7() {
42 >f7 : Symbol(f7, Decl(F7.ts, 0, 0))
/third_party/typescript/tests/cases/compiler/
DrecursiveFunctionTypes.ts37 declare function f7(): typeof f7; function
38 declare function f7(a: typeof f7): () => number;
39 declare function f7(a: number): number;
40 declare function f7(a?: typeof f7): typeof f7;
42 f7("", 3); // error (arity mismatch)
43 f7(""); // ok (function takes an any param)
44 f7(); // ok
/third_party/ffmpeg/libavcodec/mips/
Dmpegaudiodsp_mips_float.c292 float f1, f2, f3, f4, f5, f6, f7; in ff_dct32_mips_float() local
300 f7 = 0.50979557910415916894; in ff_dct32_mips_float()
356 [f4]"f"(f4), [f5]"f"(f5), [f6]"f"(f6), [f7]"f"(f7) in ff_dct32_mips_float()
366 f7 = 2.56291544774150617881; in ff_dct32_mips_float()
419 [f4]"f"(f4), [f5]"f"(f5), [f6]"f"(f6), [f7]"f"(f7) in ff_dct32_mips_float()
474 f7 = 0.60134488693504528054; in ff_dct32_mips_float()
527 [f4]"f"(f4), [f5]"f"(f5), [f6]"f"(f6), [f7]"f"(f7) in ff_dct32_mips_float()
537 f7 = 0.89997622313641570463; in ff_dct32_mips_float()
590 [f4]"f"(f4), [f5]"f"(f5), [f6]"f"(f6), [f7]"f"(f7) in ff_dct32_mips_float()
801 float f1, f2, f3, f4, f5, f6, f7, f8, f9; in imdct36_mips_float() local
[all …]
Dsimple_idct_mmi.c156 MMI_LQC1($f7, $f6, %[block], 0x30) in ff_simple_idct_8_mmi()
169 IDCT_ROW_COND_DC($f6,$f7) in ff_simple_idct_8_mmi()
351 IDCT_COL_CASE1($f5, $f5, $f7) in ff_simple_idct_8_mmi()
373 IDCT_COL_CASE2($f5, $f7, $f5, $f7) in ff_simple_idct_8_mmi()
404 MMI_SQC1($f7, $f6, %[block], 0x50) in ff_simple_idct_8_mmi()
/third_party/typescript/tests/cases/conformance/es6/destructuring/
DdestructuringWithLiteralInitializers.ts37 function f7({ a: { x = 0, y = 0 } } = { a: {} }) { } function
38 f7();
39 f7({ a: {} });
40 f7({ a: { x: 1 } });
41 f7({ a: { y: 1 } });
42 f7({ a: { x: 1, y: 1 } });
/third_party/skia/src/core/
DSkEndian.h173 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \ argument
181 SK_OT_BYTE f7 : 1;
183 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \ argument
184 SK_OT_BYTE f7 : 1; \
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/
DstringLiteralTypeIsSubtypeOfString.ts30 function f7(x: 'a'); function
31 function f7(x: Date);
32 function f7(x: any) { }

12345678910>>...20