/third_party/typescript/tests/baselines/reference/ |
D | recursiveFunctionTypes.types | 105 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 …]
|
D | recursiveFunctionTypes.errors.txt | 15 …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… 19 …f7; (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 …]
|
D | recursiveFunctionTypes.symbols | 98 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 …]
|
D | recursiveFunctionTypes.js | 38 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
|
D | destructuringWithLiteralInitializers.js | 38 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 …]
|
D | destructuringWithLiteralInitializers.symbols | 111 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 …]
|
D | destructuringWithLiteralInitializers.types | 172 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 …]
|
D | unionTypeCallSignatures3.symbols | 29 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))
|
D | defaultArgsInFunctionExpressions.symbols | 79 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))
|
D | defaultArgsInFunctionExpressions.js | 30 var f7 = (t = U) => { return t; }; function 32 f7().x; 69 var f7 = function (t) { 73 f7().x;
|
D | defaultArgsInFunctionExpressions.types | 106 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
|
D | unionTypeCallSignatures3.types | 29 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
|
D | unionTypeCallSignatures3.js | 8 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) {
|
D | emitter.asyncGenerators.functionExpressions.es5.symbols | 41 const f7 = async function * () { 42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
|
D | emitter.asyncGenerators.functionExpressions.es2018.symbols | 41 const f7 = async function * () { 42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
|
D | noImplicitThisFunctions.symbols | 44 let f7 = function() { return function() { return this } }; 45 >f7 : Symbol(f7, Decl(noImplicitThisFunctions.ts, 20, 3))
|
D | emitter.asyncGenerators.functionDeclarations.es5.symbols | 41 async function * f7() { 42 >f7 : Symbol(f7, Decl(F7.ts, 0, 0))
|
D | emitter.asyncGenerators.functionExpressions.es2015.symbols | 41 const f7 = async function * () { 42 >f7 : Symbol(f7, Decl(F7.ts, 0, 5))
|
D | emitter.asyncGenerators.functionDeclarations.es2015.symbols | 41 async function * f7() { 42 >f7 : Symbol(f7, Decl(F7.ts, 0, 0))
|
/third_party/typescript/tests/cases/compiler/ |
D | recursiveFunctionTypes.ts | 37 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/ |
D | mpegaudiodsp_mips_float.c | 292 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 …]
|
D | simple_idct_mmi.c | 156 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/ |
D | destructuringWithLiteralInitializers.ts | 37 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/ |
D | SkEndian.h | 173 #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/ |
D | stringLiteralTypeIsSubtypeOfString.ts | 30 function f7(x: 'a'); function 31 function f7(x: Date); 32 function f7(x: any) { }
|