Home
last modified time | relevance | path

Searched refs:yy (Results 1 - 25 of 119) sorted by relevance

12345

/third_party/typescript/tests/baselines/reference/
H A DtsxStatelessFunctionComponentOverload2.js4 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
7 yy: 10,
12 yy: true
16 yy: 500,
27 const c5 = <OneThing {...obj1} yy={42} {...{yy1: "hi"}}/>
28 const c6 = <OneThing {...obj1} {...{yy: 10000, yy1: "true"}} />
29 const c7 = <OneThing {...defaultObj} yy {...obj} />; // No error. should pick second overload
40 yy: 10,
44 yy: true
47 yy
[all...]
H A DtsxStatelessFunctionComponentOverload3.js6 declare function ZeroThingOrTwoThing(l: {yy: number, yy1: string}, context: Context): JSX.Element;
12 const two2 = <ZeroThingOrTwoThing yy={100} yy1="hello"/>;
14 const two4 = <ZeroThingOrTwoThing yy={1000} {...obj2} />; // it is just any so we allow it to pass through
15 const two5 = <ZeroThingOrTwoThing {...obj2} yy={1000} />; // it is just any so we allow it to pass through
19 declare function ThreeThing(l: {yy: number, yy1: string}, context: Context, updater: any): JSX.Element;
22 const three1 = <ThreeThing yy={99} yy1="hello world" />;
30 var two2 = <ZeroThingOrTwoThing yy={100} yy1="hello"/>;
32 var two4 = <ZeroThingOrTwoThing yy={1000} {...obj2}/>; // it is just any so we allow it to pass through
33 var two5 = <ZeroThingOrTwoThing {...obj2} yy={1000}/>; // it is just any so we allow it to pass through
35 var three1 = <ThreeThing yy
[all...]
H A DtsxStatelessFunctionComponentOverload4.js4 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
7 yy: 10,
14 const c1 = <OneThing yy={10}/>; // missing property;
18 const c5 = <OneThing {...obj} {...{yy: true}} />; // type incompatible;
20 const c7 = <OneThing {...obj2} yy />; // Should error as there is extra attribute that doesn't match any. Current it is not
23 declare function TestingOneThing(n: {yy: string, direction?: number}): JSX.Element;
27 const d2 = <TestingOneThing yy="hello" direction="left" />
45 yy: 10,
51 var c1 = <OneThing yy={10}/>; // missing property;
55 var c5 = <OneThing {...obj} {...{ yy
[all...]
H A DreadonlyMembers.js64 let yy: { readonly [x: number]: string, [x: string]: string };
65 yy[1] = "abc"; // Error
66 yy["foo"] = "abc";
129 var yy; variable
130 yy[1] = "abc"; // Error
131 yy["foo"] = "abc";
H A DintersectionsAndOptionalProperties.js26 const yy: number[] & [number, ...number[]] = [1];
27 const xx: [number, ...number[]] = yy;
40 var yy = [1]; variable
41 var xx = yy;
H A DexportBinding.js15 export { y as yy }
37 exports.yy = exports.y = void 0;
41 exports.yy = y;
H A DcommentsVarDecl.js31 var yy = variable
68 var yy = variable
97 declare var yy: number;
H A DdirectDependenceBetweenTypeAliases.js31 type T7 = typeof yy
32 var yy: [string, T8[]];
59 var yy; variable
/third_party/toybox/toys/posix/
H A Dsort.c175 char *xx,*yy; in compare_values() local
176 double dx = strtod(x,&xx), dy = strtod(y,&yy); in compare_values()
181 if (x==xx) return y==yy ? 0 : -1; in compare_values()
182 if (y==yy) return 1; in compare_values()
201 char *xx,*yy; in compare_values() local
205 yy = strptime(y,"%b",&thyme); in compare_values()
206 if (!xx) return !yy ? 0 : -1; in compare_values()
207 else if (!yy) return 1; in compare_values()
215 long long xx = strtoll(x, &x, 10), yy = strtoll(y, &y, 10); in compare_values() local
217 if (xx<yy) retur in compare_values()
220 char xx = *x ? *x : x[-1], yy = *y ? *y : y[-1]; compare_values() local
247 char *x, *y, *xx = *(char **)xarg, *yy = *(char **)yarg; compare_keys() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
H A Drc4-586.pl76 $yy="ebx";
87 &add (&LB($yy),&LB($tx));
88 &mov ($ty,&DWP(0,$dat,$yy,4));
89 &mov (&DWP(0,$dat,$yy,4),$tx);
115 &add (&LB($yy),&LB($tx));
121 &mov ($ty,&DWP(0,$dat,$yy,4));
122 &mov (&DWP(0,$dat,$yy,4),$tx);
141 &add (&LB($yy),&LB($tx));
143 &mov ($ty,&DWP(0,$dat,$yy,4));
144 &mov (&DWP(0,$dat,$yy,
[all...]
/third_party/openssl/crypto/rc4/asm/
H A Drc4-586.pl76 $yy="ebx";
87 &add (&LB($yy),&LB($tx));
88 &mov ($ty,&DWP(0,$dat,$yy,4));
89 &mov (&DWP(0,$dat,$yy,4),$tx);
115 &add (&LB($yy),&LB($tx));
121 &mov ($ty,&DWP(0,$dat,$yy,4));
122 &mov (&DWP(0,$dat,$yy,4),$tx);
141 &add (&LB($yy),&LB($tx));
143 &mov ($ty,&DWP(0,$dat,$yy,4));
144 &mov (&DWP(0,$dat,$yy,
[all...]
/third_party/toybox/toys/other/
H A Dhexedit.c69 static void draw_line(long long yy) in draw_line() argument
73 yy = (TT.base+yy)*16; in draw_line()
74 if (yy+xx>=TT.len) xx = TT.len-yy; in draw_line()
76 if (yy<TT.len) { in draw_line()
77 printf("\r%0*llX ", TT.numlen, yy); in draw_line()
78 for (x=0; x<xx; x++) printf(" %02X", TT.data[yy+x]); in draw_line()
80 for (x=0; x<xx; x++) draw_char(stdout, TT.data[yy+x]); in draw_line()
99 static void highlight(int xx, int yy, in argument
[all...]
H A Dwatch.c70 unsigned width, height, i, cmdlen, len, xx QUIET, yy QUIET, active QUIET; in watch_main()
115 if (yy>=3) xprintf("\r\n"); in watch_main()
117 yy = 2; in watch_main()
136 xpoll(pfd, 1+(active && yy<height), then-now); in watch_main()
155 while (yy<height) { in watch_main()
158 if (++yy>=height) break; in watch_main()
163 if (++yy>=height) break; in watch_main()
173 if (++yy>=height) break; in watch_main()
H A Dpwgen.c40 unsigned xx = 80, yy = 24; in pwgen_main() local
43 if (isatty(1)) terminal_size(&xx, &yy); in pwgen_main()
49 else count = FLAG(1) ? 1 : (xx/(length+1))*(yy-1); in pwgen_main()
/third_party/python/Lib/email/
H A D_parseaddr.py97 [dd, mm, yy, tm, tz] = data
98 if not (dd and mm and yy):
110 i = yy.find(':')
112 yy, tm = tm, yy
113 if yy[-1] == ',':
114 yy = yy[:-1]
115 if not yy:
117 if not yy[
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftcalc.c663 FT_Fixed xx, xy, yx, yy; in FT_Matrix_Multiply() local
672 FT_MulFix( a->xy, b->yy ) ); in FT_Matrix_Multiply()
674 FT_MulFix( a->yy, b->yx ) ); in FT_Matrix_Multiply()
675 yy = ADD_LONG( FT_MulFix( a->yx, b->xy ), in FT_Matrix_Multiply()
676 FT_MulFix( a->yy, b->yy ) ); in FT_Matrix_Multiply()
681 b->yy = yy; in FT_Matrix_Multiply()
690 FT_Pos delta, xx, yy; in FT_EXPORT_DEF() local
697 delta = FT_MulFix( matrix->xx, matrix->yy ) in FT_EXPORT_DEF()
723 FT_Fixed xx, xy, yx, yy; FT_Matrix_Multiply_Scaled() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_hysteresis.c178 int x_min, x_max, y_min, y_max, yy, xx; in hysteresis8() local
187 for (yy = y_min; yy <= y_max; yy++) { in hysteresis8()
189 if ((asrc[xx + yy * alinesize] > t) && !passed(s, xx, yy, w)) { in hysteresis8()
190 dst[xx + yy * dlinesize] = asrc[xx + yy * alinesize]; in hysteresis8()
191 push(s, xx, yy, w); in hysteresis8()
227 int x_min, x_max, y_min, y_max, yy, x in hysteresis16() local
[all...]
/third_party/toybox/lib/
H A Dtty.c21 int terminal_size(unsigned *xx, unsigned *yy) in terminal_size() argument
44 if (yy && y) *yy = y; in terminal_size()
53 int terminal_probesize(unsigned *xx, unsigned *yy) in terminal_probesize() argument
55 if (terminal_size(xx, yy) && (!xx || *xx) && (!yy || *yy)) return 1; in terminal_probesize()
176 int scan_key_getsize(char *scratch, int timeout_ms, unsigned *xx, unsigned *yy) in scan_key_getsize() argument
201 if (yy) *yy in scan_key_getsize()
[all...]
/third_party/skia/src/core/
H A DSkPoint3.cpp41 double yy = y; in Length() local
43 return (float)sqrt(xx * xx + yy * yy + zz * zz); in Length()
71 double yy = fY; in normalize() local
73 invScale = xx * xx + yy * yy + zz * zz; in normalize()
H A DSkPoint.cpp53 double yy = y; in set_point_length() local
54 double dmag = sqrt(xx * xx + yy * yy); in set_point_length()
88 double yy = dy; in Length() local
89 return sk_double_to_float(sqrt(xx * xx + yy * yy)); in Length()
/third_party/selinux/checkpolicy/
H A DMakefile22 CHECKOBJS = y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o \
27 GENERATED=lex.yy.c y.tab.c y.tab.h
44 lex.yy.o: lex.yy.c
50 lex.yy.c: policy_scan.l y.tab.c
71 -rm -f $(TARGETS) $(CHECKPOLOBJS) $(CHECKMODOBJS) y.tab.c y.tab.h lex.yy.c
/third_party/ffmpeg/libavcodec/
H A Dsga.c115 for (int yy = 0; yy < 8; yy++) { in decode_index_palmap()
169 for (int yy = 0; yy < 8; yy++) { in decode_index_tilemap()
171 dst[xx] = pal_idx + tile[xx + yy * 8]; in decode_index_tilemap()
188 for (int yy = 0; yy < 8; yy in decode_index()
[all...]
H A Dh274.c269 for (int yy = 0; yy < 16 && y+yy < height; yy += 8) { in ff_h274_apply_film_grain()
271 generate(grain + (y+yy) * grain_stride + (x+xx), grain_stride, in ff_h274_apply_film_grain()
272 in + (y+yy) * in_stride + (x+xx), in_stride, in ff_h274_apply_film_grain()
274 y_offset + yy, x_offset + xx); in ff_h274_apply_film_grain()
/third_party/typescript/tests/baselines/reference/tsbuild/outfile-concat/
H A DemitHelpers-in-all-projects.js30 const { b, ...rest } = { a: 10, b: 30, yy: 30 }; property
77 const { b, ...rest } = { a: 10, b: 30, yy: 30 }; property
110 const { b, ...rest } = { a: 10, b: 30, yy: 30 }; property
265 > const { b, ...rest } = { a: 10, b: 30, yy: 30 };
328 var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest = __rest(_a, ["b"]);
513 >>> var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest = __rest(_a, ["b"]);
552 13> yy
563 24> = { a: 10, b: 30, yy: 30 }
710 {"bundle":{"commonSourceDirectory":"../second","sourceFiles":["../second/second_part1.ts","../second/second_part2.ts"],"js":{"sections":[{"pos":0,"end":500,"kind":"emitHelpers","data":"typescript:rest"},{"pos":502,"end":906,"kind":"text"}],"sources":{"helpers":["typescript:rest"]},"mapHash":"-21017865726-{\"version\":3,\"file\":\"second-output.js\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\";;;;;;;;;;;AAIA,IAAU,CAAC,CAMV;AAND,WAAU,CAAC;IACP,SAAS,CAAC;QACN,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IAC3B,CAAC;IAED,CAAC,EAAE,CAAC;AACR,CAAC,EANS,CAAC,KAAD,CAAC,QAMV;AACD,SAAS,yBAAyB;IAClC,IAAM,KAAiB,EAAE,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAvC,CAAC,OAAA,EAAK,IAAI,cAAZ,KAAc,CAA2B,CAAC;AAChD,CAAC;ACbD;IAAA;IAIA,CAAC;IAHG,uBAAW,GAAX;QACI,OAAO,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;IACtC,CAAC;IACL,QAAC;AAAD,CAAC,AAJD,IAIC\"}","hash":"-42811698101-var __rest = (this && this.__rest) || function (s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n};\r\nvar N;\r\n(function (N) {\r\n function f() {\r\n console.log('testing');\r\n }\r\n f();\r\n})(N || (N = {}));\r\nfunction forsecondsecond_part1Rest() {\r\n var _a = { a: 10, b: 30, yy: 30 }, b = _a.b, rest = __rest(_a, [\"b\"]);\r\n}\r\nvar C = (function () {\r\n function C() {\r\n }\r\n C.prototype.doSomething = function () {\r\n console.log(\"something got done\");\r\n };\r\n return C;\r\n}());\r\n//# sourceMappingURL=second-output.js.map"},"dts":{"sections":[{"pos":0,"end":153,"kind":"text"}],"mapHash":"-13719015667-{\"version\":3,\"file\":\"second-output.d.ts\",\"sourceRoot\":\"\",\"sources\":[\"../second/second_part1.ts\",\"../second/second_part2.ts\"],\"names\":[],\"mappings\":\"AAAA,kBAAU,CAAC,CAAC;CAEX;AAED,kBAAU,CAAC,CAAC;CAMX;AACD,iBAAS,yBAAyB,SAEjC;ACbD,cAAM,CAAC;IACH,WAAW;CAGd\"}","hash":"-21852951798-declare namespace N {\r\n}\r\ndeclare namespace N {\r\n}\r\ndeclare function forsecondsecond_part1Rest(): void;\r\ndeclare class C {\r\n doSomething(): void;\r\n}\r\n//# sourceMappingURL=second-output.d.ts.map"}},"program":{"fileNames":["../second/second_part1.ts","../second/second_part2.ts"],"fileInfos":["-12564528434-namespace N {\r\n // Comment text\r\n}\r\n\r\nnamespace N {\r\n function f() {\r\n console.log('testing');\r\n }\r\n\r\n f();\r\n}\r\nfunction forsecondsecond_part1Rest() {\nconst { b, ...rest } = { a: 10, b: 30, yy
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_barycentric/
H A DvktFragmentShadingBarycentricTests.cpp389 const float yy = -1.0f + 2.0f * ((0.5f + float(y)) / float(m_testParams.height)); in generateVertexBuffer() local
395 result.push_back(tcu::Vec4(xx, yy, 0.0f, 1.0f)); in generateVertexBuffer()
410 const float yy = -1.0f + 2.0f * ((0.5f + float(y)) / float(m_testParams.height)); in generateVertexBuffer() local
412 result.push_back(tcu::Vec4(-1.0f, yy, 0.0f, 1.0f)); in generateVertexBuffer()
413 result.push_back(tcu::Vec4( 1.0f, yy, 0.0f, 1.0f)); in generateVertexBuffer()
427 const float yy = -1.0f + 2.0f * (0.5f + float(y)) / float(m_testParams.height);; in generateVertexBuffer() local
431 result.push_back(tcu::Vec4(-2.0f, yy, 0.0f, 1.0f)); in generateVertexBuffer()
432 result.push_back(tcu::Vec4(+2.0f, yy, 0.0f, 1.0f)); in generateVertexBuffer()
436 result.push_back(tcu::Vec4(+2.0f, yy, 0.0f, 1.0f)); in generateVertexBuffer()
437 result.push_back(tcu::Vec4(-2.0f, yy, 0. in generateVertexBuffer()
497 const float yy = -1.0f + 2.0f * ((0.5f + float(y)) / float(m_testParams.height)); generateVertexBuffer() local
519 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
806 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
834 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
856 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
931 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
959 const float yy = -1.0f + 2.0f * ky; generateVertexBuffer() local
[all...]

Completed in 13 milliseconds

12345