Home
last modified time | relevance | path

Searched refs:yy (Results 1 – 25 of 596) sorted by relevance

12345678910>>...24

/third_party/typescript/tests/baselines/reference/
DtsxStatelessFunctionComponentOverload2.types6 >OneThing : { (): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; }
9 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
10 >OneThing : { (): JSX.Element; (l: { yy: number; yy1: string;}): JSX.Element; }
11 >l : { yy: number; yy1: string; }
12 >yy : number
17 >obj : { yy: number; yy1: string; }
18 >{ yy: 10, yy1: "hello"} : { yy: number; yy1: string; }
20 yy: 10,
21 >yy : number
30 >obj1 : { yy: boolean; }
[all …]
DtsxStatelessFunctionComponentOverload1.types6 …: string; children: string; }): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; (l: {…
12 …string; children: string;}): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; (l: {…
18 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
19 …ring; children: string; }): JSX.Element; (l: { yy: number; yy1: string;}): JSX.Element; (l: …
20 >l : { yy: number; yy1: string; }
21 >yy : number
25 declare function OneThing(l: {yy: number, yy1: string, yy2: boolean}): JSX.Element;
26 … string; children: string; }): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; (l: { …
27 >l : { yy: number; yy1: string; yy2: boolean; }
28 >yy : number
[all …]
DtsxStatelessFunctionComponentOverload3.types7 >ZeroThingOrTwoThing : { (): JSX.Element; (l: { yy: number; yy1: string; }, context: Context): JSX.…
10 declare function ZeroThingOrTwoThing(l: {yy: number, yy1: string}, context: Context): JSX.Element;
11 >ZeroThingOrTwoThing : { (): JSX.Element; (l: { yy: number; yy1: string;}, context: Context):…
12 >l : { yy: number; yy1: string; }
13 >yy : number
25 >ZeroThingOrTwoThing : { (): JSX.Element; (l: { yy: number; yy1: string; }, context: Context): JSX.…
27 const two2 = <ZeroThingOrTwoThing yy={100} yy1="hello"/>;
29 ><ZeroThingOrTwoThing yy={100} yy1="hello"/> : JSX.Element
30 >ZeroThingOrTwoThing : { (): JSX.Element; (l: { yy: number; yy1: string; }, context: Context): JSX.…
31 >yy : number
[all …]
DtsxStatelessFunctionComponentOverload4.types6 >OneThing : { (): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; }
9 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
10 >OneThing : { (): JSX.Element; (l: { yy: number; yy1: string;}): JSX.Element; }
11 >l : { yy: number; yy1: string; }
12 >yy : number
17 >obj : { yy: number; yy1: string; }
18 >{ yy: 10, yy1: "hello"} : { yy: number; yy1: string; }
20 yy: 10,
21 >yy : number
35 >OneThing : { (): JSX.Element; (l: { yy: number; yy1: string; }): JSX.Element; }
[all …]
DtsxStatelessFunctionComponentOverload2.js4 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element; property
7 yy: 10, property
12 yy: true property
16 yy: 500, property
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, property
44 yy: true property
47 yy: 500, property
[all …]
DtsxStatelessFunctionComponentOverload2.symbols10 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
13 >yy : Symbol(yy, Decl(file.tsx, 2, 30))
21 yy: 10,
22 >yy : Symbol(yy, Decl(file.tsx, 4, 11))
31 yy: true
32 >yy : Symbol(yy, Decl(file.tsx, 9, 12))
38 yy: 500,
39 >yy : Symbol(yy, Decl(file.tsx, 13, 12))
68 const c5 = <OneThing {...obj1} yy={42} {...{yy1: "hi"}}/>
72 >yy : Symbol(yy, Decl(file.tsx, 25, 30))
[all …]
DtsxStatelessFunctionComponentOverload4.js4 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element; property
7 yy: 10, property
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 mat…
23 declare function TestingOneThing(n: {yy: string, direction?: number}): JSX.Element; property
27 const d2 = <TestingOneThing yy="hello" direction="left" />
45 yy: 10, property
51 var c1 = <OneThing yy={10}/>; // missing property;
55 var c5 = <OneThing {...obj} {...{ yy: true }}/>; // type incompatible;
[all …]
DtsxStatelessFunctionComponentOverload3.js6 declare function ZeroThingOrTwoThing(l: {yy: number, yy1: string}, context: Context): JSX.Element; property
12 const two2 = <ZeroThingOrTwoThing yy={100} yy1="hello"/>;
14 const two4 = <ZeroThingOrTwoThing yy={1000} {...obj2} />; // it is just any so we allow it to pas…
15 const two5 = <ZeroThingOrTwoThing {...obj2} yy={1000} />; // it is just any so we allow it to pas…
19 declare function ThreeThing(l: {yy: number, yy1: string}, context: Context, updater: any): JSX.Elem… property
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 thr…
33 var two5 = <ZeroThingOrTwoThing {...obj2} yy={1000}/>; // it is just any so we allow it to pass thr…
35 var three1 = <ThreeThing yy={99} yy1="hello world"/>;
DtsxStatelessFunctionComponentOverload4.errors.txt5 Overload 2 of 2, '(l: { yy: number; yy1: string; }): Element', gave the following error.
6 …Type '{ extraProp: true; }' is not assignable to type 'IntrinsicAttributes & { yy: number; yy1: st…
7 … Property 'extraProp' does not exist on type 'IntrinsicAttributes & { yy: number; yy1: string; }'.
10 Type '{ yy: number; }' is not assignable to type 'IntrinsicAttributes'.
11 Property 'yy' does not exist on type 'IntrinsicAttributes'.
12 Overload 2 of 2, '(l: { yy: number; yy1: string; }): Element', gave the following error.
13 …Property 'yy1' is missing in type '{ yy: number; }' but required in type '{ yy: number; yy1: strin…
16 Type '{ yy1: true; yy: number; }' is not assignable to type 'IntrinsicAttributes'.
18 Overload 2 of 2, '(l: { yy: number; yy1: string; }): Element', gave the following error.
22 Type '{ y1: number; yy: number; yy1: string; }' is not assignable to type 'IntrinsicAttributes'.
[all …]
DtsxStatelessFunctionComponentOverload1.js6 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element; property
7 declare function OneThing(l: {yy: number, yy1: string, yy2: boolean}): JSX.Element; property
12 const c2 = <OneThing yy={100} yy1="hello"/>
19 declare function TestingOneThing(j: {"extra-data": string, yy?: string}): JSX.Element; field
20 declare function TestingOneThing(n: {yy: number, direction?: number}): JSX.Element; property
21 declare function TestingOneThing(n: {yy: string, name: string}): JSX.Element; property
26 const d3 = <TestingOneThing extra-data="hello" yy="hihi" />;
27 const d4 = <TestingOneThing extra-data="hello" yy={9} direction={10} />;
28 const d5 = <TestingOneThing extra-data="hello" yy="hello" name="Bob" />;
51 var c2 = <OneThing yy={100} yy1="hello"/>;
[all …]
DtsxStatelessFunctionComponentOverload3.symbols13 declare function ZeroThingOrTwoThing(l: {yy: number, yy1: string}, context: Context): JSX.Element;
16 >yy : Symbol(yy, Decl(file.tsx, 4, 41))
31 const two2 = <ZeroThingOrTwoThing yy={100} yy1="hello"/>;
34 >yy : Symbol(yy, Decl(file.tsx, 10, 33))
42 const two4 = <ZeroThingOrTwoThing yy={1000} {...obj2} />; // it is just any so we allow it to pas…
45 >yy : Symbol(yy, Decl(file.tsx, 12, 33))
48 const two5 = <ZeroThingOrTwoThing {...obj2} yy={1000} />; // it is just any so we allow it to pas…
52 >yy : Symbol(yy, Decl(file.tsx, 13, 44))
68 declare function ThreeThing(l: {yy: number, yy1: string}, context: Context, updater: any): JSX.Elem…
71 >yy : Symbol(yy, Decl(file.tsx, 17, 32))
[all …]
DtsxStatelessFunctionComponentOverload1.symbols20 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
23 >yy : Symbol(yy, Decl(file.tsx, 4, 30))
28 declare function OneThing(l: {yy: number, yy1: string, yy2: boolean}): JSX.Element;
31 >yy : Symbol(yy, Decl(file.tsx, 5, 30))
51 const c2 = <OneThing yy={100} yy1="hello"/>
54 >yy : Symbol(yy, Decl(file.tsx, 10, 20))
83 declare function TestingOneThing(j: {"extra-data": string, yy?: string}): JSX.Element;
87 >yy : Symbol(yy, Decl(file.tsx, 17, 58))
91 declare function TestingOneThing(n: {yy: number, direction?: number}): JSX.Element;
94 >yy : Symbol(yy, Decl(file.tsx, 18, 37))
[all …]
DtsxStatelessFunctionComponentOverload4.symbols10 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
13 >yy : Symbol(yy, Decl(file.tsx, 2, 30))
21 yy: 10,
22 >yy : Symbol(yy, Decl(file.tsx, 4, 11))
36 const c1 = <OneThing yy={10}/>; // missing property;
39 >yy : Symbol(yy, Decl(file.tsx, 12, 20))
59 const c5 = <OneThing {...obj} {...{yy: true}} />; // type incompatible;
63 >yy : Symbol(yy, Decl(file.tsx, 16, 35))
71 const c7 = <OneThing {...obj2} yy />; // Should error as there is extra attribute that doesn't mat…
75 >yy : Symbol(yy, Decl(file.tsx, 18, 30))
[all …]
DtsxStatelessFunctionComponentOverload1.errors.txt9 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
10 declare function OneThing(l: {yy: number, yy1: string, yy2: boolean}): JSX.Element;
15 const c2 = <OneThing yy={100} yy1="hello"/>
25 declare function TestingOneThing(j: {"extra-data": string, yy?: string}): JSX.Element;
26 declare function TestingOneThing(n: {yy: number, direction?: number}): JSX.Element;
27 declare function TestingOneThing(n: {yy: string, name: string}): JSX.Element;
32 const d3 = <TestingOneThing extra-data="hello" yy="hihi" />;
33 const d4 = <TestingOneThing extra-data="hello" yy={9} direction={10} />;
34 const d5 = <TestingOneThing extra-data="hello" yy="hello" name="Bob" />;
/third_party/openssl/crypto/rc4/asm/
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,4),$tx);
[all …]
/third_party/node/deps/openssl/openssl/crypto/rc4/asm/
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,4),$tx);
[all …]
/third_party/toybox/toys/posix/
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) return -1; in compare_values()
[all …]
/third_party/skia/third_party/externals/freetype/src/base/
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_Matrix_Invert() local
697 delta = FT_MulFix( matrix->xx, matrix->yy ) - in FT_Matrix_Invert()
707 yy = matrix->yy; in FT_Matrix_Invert()
709 matrix->xx = FT_DivFix( yy, delta ); in FT_Matrix_Invert()
[all …]
/third_party/toybox/toys/other/
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, int side) in highlight() argument
101 char cc = TT.data[16*(TT.base+yy)+xx]; in highlight()
105 tty_jump(2+TT.numlen+3*xx, yy); in highlight()
[all …]
/third_party/typescript/tests/cases/conformance/jsx/
DtsxStatelessFunctionComponentOverload1.tsx12 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
13 declare function OneThing(l: {yy: number, yy1: string, yy2: boolean}): JSX.Element;
18 const c2 = <OneThing yy={100} yy1="hello"/>
25 declare function TestingOneThing(j: {"extra-data": string, yy?: string}): JSX.Element;
26 declare function TestingOneThing(n: {yy: number, direction?: number}): JSX.Element;
27 declare function TestingOneThing(n: {yy: string, name: string}): JSX.Element;
32 const d3 = <TestingOneThing extra-data="hello" yy="hihi" />;
33 const d4 = <TestingOneThing extra-data="hello" yy={9} direction={10} />;
34 const d5 = <TestingOneThing extra-data="hello" yy="hello" name="Bob" />;
DtsxStatelessFunctionComponentOverload2.tsx10 declare function OneThing(l: {yy: number, yy1: string}): JSX.Element;
13 yy: 10,
18 yy: true
22 yy: 500,
33 const c5 = <OneThing {...obj1} yy={42} {...{yy1: "hi"}}/>
34 const c6 = <OneThing {...obj1} {...{yy: 10000, yy1: "true"}} />
35 const c7 = <OneThing {...defaultObj} yy {...obj} />; // No error. should pick second overload
/third_party/ffmpeg/libavfilter/
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, xx; in hysteresis16() local
236 for (yy = y_min; yy <= y_max; yy++) { in hysteresis16()
238 if ((asrc[xx + yy * alinesize] > t) && !passed(s, xx, yy, w)) { in hysteresis16()
239 dst[xx + yy * dlinesize] = asrc[xx + yy * alinesize]; in hysteresis16()
240 push(s, xx, yy, w); in hysteresis16()
/third_party/python/Lib/email/
D_parseaddr.py97 [dd, mm, yy, tm, tz] = data
108 i = yy.find(':')
110 yy, tm = tm, yy
111 if yy[-1] == ',':
112 yy = yy[:-1]
113 if not yy[0].isdigit():
114 yy, tz = tz, yy
136 yy = int(yy)
148 if yy < 100:
150 if yy > 68:
[all …]
/third_party/toybox/lib/
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 = y; in scan_key_getsize()
/third_party/skia/src/core/
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()

12345678910>>...24