Home
last modified time | relevance | path

Searched refs:f7 (Results 1 - 25 of 112) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
H A 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(""); // o
[all...]
H A 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({
[all...]
H A DdefaultArgsInFunctionExpressions.js30 var f7 = (t = U) => { return t; };
32 f7().x;
69 var f7 = function (t) { function
73 f7().x;
H A 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) {
H A DnoImplicitThisFunctions.js22 let f7 = function() { return function() { return this } };
46 var f7 = function () { return function () { return this; }; }; function
H A DstringLiteralTypeIsSubtypeOfString.js31 function f7(x: 'a');
32 function f7(x: Date);
33 function f7(x: any) { } function
112 function f7(x) { }
H A DunusedParametersWithUnderscore.js21 var f7 = _ => undefined; variable
48 var f7 = function (_) { return undefined; }; function
H A DreachabilityChecks6.js66 function f7(x) { function
188 function f7(x) {
H A DparameterInitializersForwardReferencing1_es6.js30 function f7({[foo]: bar}: any[]) { function
63 function f7({ [foo]: bar }) {
H A DliteralTypes3.js47 function f7(x: number | "foo" | "bar", y: 1 | 2 | string) { function
107 function f7(x, y) {
H A DreachabilityChecks5.js66 function f7(x): number {
188 function f7(x) { function
H A DtransformsElideNullUndefinedType.js15 function f7(p1: undefined) { } function
71 function f7(p1) { }
H A DasyncAwaitIsolatedModules_es2017.js15 let f7 = async () => { };
49 let f7 = async () => { };
H A DasyncAwait_es2017.js15 let f7 = async () => { };
56 let f7 = async () => { };
H A DcontrolFlowArrayErrors.js52 function f7() { function
111 function f7() {
H A DcontrolFlowJavascript.js65 function f7() { function
165 function f7() {
H A DcontrolFlowTruthiness.js71 function f7(x: {}) { function
160 function f7(x) {
H A DduplicateIdentifierBindingElementInParameterDeclaration1.js9 function f7(a, func = (a) => { return 1 }) { } // not error function
41 function f7(a, func) {
H A DduplicateIdentifierBindingElementInParameterDeclaration2.js10 function f7(a, func = (a) => { return 1 }){ } // not error function
43 function f7(a, func) {
H A DnoImplicitAnyParametersInBareFunctions.js21 function f7(x, ...r): void { }
65 function f7(x) { function
/third_party/ffmpeg/libavcodec/mips/
H A 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()
336 "mul.s %[val7], %[f7], %[fTmp2] \n\t" in ff_dct32_mips_float()
342 "mul.s %[val15], %[f7], %[fTmp2] \n\t" in ff_dct32_mips_float()
344 "mul.s %[val23], %[f7], %[fTmp3] \n\t" in ff_dct32_mips_float()
346 "mul.s %[val31], %[f7], %[fTmp4] \n\t" 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()
402 "mul.s %[val4], %[f7], in ff_dct32_mips_float()
801 float f1, f2, f3, f4, f5, f6, f7, f8, f9; imdct36_mips_float() local
[all...]
H A 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()
342 "por $f26, $f3, $f7 \n\t" in ff_simple_idct_8_mmi()
350 /* col5: $f5: col[25,17,9,1]; $f7: col[57,49,41,33] */ in ff_simple_idct_8_mmi()
351 IDCT_COL_CASE1($f5, $f5, $f7) in ff_simple_idct_8_mmi()
361 "punpcklhw $f26, $f3, $f7 \n\t" in ff_simple_idct_8_mmi()
362 "punpckhhw $f27, $f3, $f7 \n\t" in ff_simple_idct_8_mmi()
366 "punpckhwd $f7, $f26, $f28 \n\t" in ff_simple_idct_8_mmi()
372 /* col5: $f5: col[25,17,9,1]; $f7: col[57,49,41,33] */ in ff_simple_idct_8_mmi()
373 IDCT_COL_CASE2($f5, $f7, in ff_simple_idct_8_mmi()
[all...]
/third_party/skia/src/core/
H A DSkEndian.h173 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
181 SK_OT_BYTE f7 : 1;
183 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
184 SK_OT_BYTE f7 : 1; \
/third_party/jerryscript/tests/jerry/es2015/
H A Dtry-catch.js116 function f7()
130 f7()
/third_party/jerryscript/tests/jerry/
H A Deval.js157 function f7() { function
161 f7()

Completed in 7 milliseconds

12345