Home
last modified time | relevance | path

Searched refs:f13 (Results 1 - 25 of 91) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
H A DstrictOptionalProperties1.js149 declare function f13<T>(x: Partial<T>): T;
151 f13(ox1); // { p: string }
152 f13(ox2); // { p: string | undefined }
153 f13(ox3); // { p: string }
154 f13(ox4); // { p: string | undefined }
156 f13(tx1); // [string]
157 f13(tx2); // [string | undefined]
158 f13(tx3); // [string]
159 f13(tx4); // [string | undefined]
348 f13(ox
[all...]
H A DrenamingDestructuredPropertyInFunctionType3.js7 const f13 = ({ [sym]: string }: O) => { };
13 const f13 = ({ [sym]: string }) => { };
H A 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<
[all...]
H A 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) { }
149 function f13(x) { } function
H A DasyncAwaitIsolatedModules_es2017.js21 let f13 = async (): MyPromise<number> => p;
55 let f13 = async () => p;
H A DasyncAwait_es2017.js21 let f13 = async (): MyPromise<number> => p;
62 let f13 = async () => p;
H A DcovariantCallbacks.js55 function f13(a: AList3, b: BList3) { function
94 function f13(a, b) {
H A DnoImplicitAnyParametersInBareFunctions.js41 var f13 = (...r) => "";
81 var f13 = function () { function
H A DfunctionsMissingReturnStatementsAndExpressions.js59 function f13(): any {
177 function f13() { function
H A DasyncAwaitIsolatedModules_es6.js21 let f13 = async (): MyPromise<number> => p;
76 let f13 = () => __awaiter(void 0, void 0, void 0, function* () { return p; });
H A DasyncAwait_es6.js21 let f13 = async (): MyPromise<number> => p;
83 let f13 = () => __awaiter(this, void 0, void 0, function* () { return p; });
H A DbooleanLiteralTypes1.js70 function f13(x: true | false) { function
151 function f13(x) {
H A DbooleanLiteralTypes2.js70 function f13(x: true | false) { function
151 function f13(x) {
H A DdisallowLineTerminatorBeforeArrow.js38 var f13 = (a: number):
119 var f13 = function (a) { return a; }; function
H A DobjectLiteralErrors.js35 var f13 = { 0: 0, get 0() { return 0; } };
88 var f13 = { 0: 0, get 0() { return 0; } };
H A DfunctionImplementationErrors.js70 var f13 = () => {
177 var f13 = function () { function
H A DgenericContextualTypes1.js32 const f13: <T>(x: Box<T[]>) => T = compose(unbox, unlist);
62 var f13 = compose(unbox, unlist); variable
96 declare const f13: <T>(x: Box<T[]>) => T;
H A DstringEnumLiteralTypes1.js74 function f13(x: UnknownYesNo) { function
158 function f13(x) {
H A DstringEnumLiteralTypes2.js74 function f13(x: UnknownYesNo) { function
158 function f13(x) {
H A DdestructuringWithLiteralInitializers2.js10 function f13([x = 0, y] = [1, 'foo']) {} function
54 function f13(_a) {
H A DdiscriminatedUnionTypes2.js27 function f13(x: { a: null; b: string } | { a: string, c: number }) { function
172 function f13(x) {
/third_party/ffmpeg/libavcodec/mips/
H A Dsimple_idct_mmi.c159 MMI_LQC1($f13, $f12, %[block], 0x60) in ff_simple_idct_8_mmi()
172 IDCT_ROW_COND_DC($f12,$f13) in ff_simple_idct_8_mmi()
335 "punpcklhw $f28, $f9, $f13 \n\t" in ff_simple_idct_8_mmi()
336 "punpckhhw $f29, $f9, $f13 \n\t" in ff_simple_idct_8_mmi()
340 "punpckhwd $f13, $f27, $f29 \n\t" in ff_simple_idct_8_mmi()
354 /* col7: $f13: col[27,19,11,3]; $f15: col[59,51,43,35] */ in ff_simple_idct_8_mmi()
355 IDCT_COL_CASE1($f13, $f13, $f15) in ff_simple_idct_8_mmi()
376 /* col7: $f13: col[27,19,11,3]; $f15: col[59,51,43,35] */ in ff_simple_idct_8_mmi()
377 IDCT_COL_CASE2($f13, in ff_simple_idct_8_mmi()
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dfunction-param-init4.js109 function f13(a = arguments) function
116 f13(undefined, 4)
/third_party/musl/src/setjmp/s390x/
H A Dsetjmp.s20 std %f13, 15*8(%r2)
H A Dlongjmp.s16 ld %f13, 15*8(%r2)

Completed in 7 milliseconds

1234