/third_party/typescript/tests/baselines/reference/ |
H A D | jsxUnclosedParserRecovery.js | 11 var donkey = <div> 13 </div>; 15 var donkey = <div> 17 </div>; 19 var donkey = <div> 21 </div>; 23 var donkey = <div> 25 </div>; 27 var donkey = <div> 29 </div>; [all...] |
H A D | tsxEmit1.js | 10 var selfClosed1 = <div />; 11 var selfClosed2 = <div x="1" />; 12 var selfClosed3 = <div x='1' />; 13 var selfClosed4 = <div x="1" y='0' />; 14 var selfClosed5 = <div x={0} y='0' />; 15 var selfClosed6 = <div x={"1"} y='0' />; 16 var selfClosed7 = <div x={p} y='p' />; 18 var openClosed1 = <div></div>; 19 var openClosed2 = <div [all...] |
H A D | jsxParsingError3.js | 12 let x1 = <div>}</div>; 15 let x2 = <div>></div>; 18 let x3 = <div>{"foo"}}</div>; 21 let x4 = <div>{"foo"}></div>; 24 let x5 = <div>}{"foo"}</div>; [all...] |
H A D | tsxReactEmitWhitespace.js | 15 <div> </div>; 17 <div> {p} </div>; 19 <div> 21 </div>; 24 <div> 26 </div>; 29 <div> 3 30 </div>; [all...] |
H A D | tsxReactEmit1.js | 11 var selfClosed1 = <div />; 12 var selfClosed2 = <div x="1" />; 13 var selfClosed3 = <div x='1' />; 14 var selfClosed4 = <div x="1" y='0' />; 15 var selfClosed5 = <div x={0} y='0' />; 16 var selfClosed6 = <div x={"1"} y='0' />; 17 var selfClosed7 = <div x={p} y='p' b />; 19 var openClosed1 = <div></div>; 20 var openClosed2 = <div [all...] |
H A D | checkJsxChildrenProperty15.js | 4 const Tag = (x: {}) => <div></div>; 11 const k3 = <Tag children={<div></div>} />; 12 const k4 = <Tag key="1"><div></div></Tag>; 13 const k5 = <Tag key="1"><div></div><div></div></Ta [all...] |
H A D | tsxEmit2.js | 10 var spreads1 = <div {...p1}>{p2}</div>; 11 var spreads2 = <div {...p1}>{p2}</div>; 12 var spreads3 = <div x={p3} {...p1}>{p2}</div>; 13 var spreads4 = <div {...p1} x={p3} >{p2}</div>; 14 var spreads5 = <div x={p2} {...p1} y={p3}>{p2}</div>; [all...] |
H A D | checkJsxChildrenProperty2.js | 11 return <div>{p.b}</div>; 33 <div> My Div </div> 34 {(name: string) => <div> My name {name} </div>} 39 <div> My Div </div> 45 <div> My Div </div> [all...] |
H A D | commentEmittingInPreserveJsx1.js | 4 <div> 6 </div>; 8 <div> 14 </div>; 16 <div> 23 </div>; 25 <div> 31 </div>;
37 <div> 39 </div>;
[all...] |
H A D | tsxErrorRecovery2.js | 6 <div></div> 7 <div></div> 10 var x = <div></div><div></div> 14 <div></div>
[all...] |
H A D | tsxReactEmit7.js | 9 var m = <div x-y="val"></div>; 10 var n = <div xx-y="val"></div>; 11 var o = <div x-yy="val"></div>; 12 var p = <div xx-yy="val"></div>; 15 var a = <div x="val"></div>; [all...] |
H A D | jsxIntrinsicElementsTypeArgumentErrors.js | 6 const a = <div<>></div>; // empty type args 8 const b = <div<number,>></div>; // trailing comma type args 10 const c = <div<Missing>></div>; // nonexistant type args 12 const d = <div<Missing<AlsoMissing>>></div>; // nested missing type args 14 const e = <div<Record<object, object>>></div>; // existin [all...] |
H A D | checkJsxChildrenProperty10.js | 6 div: any; 15 return (<div>My Button</div>) 20 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>; 21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>; 22 let k3 = <div> {1} {"That is a number"} </div>; 30 return (<div>M [all...] |
H A D | checkJsxChildrenProperty11.js | 6 div: any; 15 return (<div>My Button</div>) 20 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>; 21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>; 22 let k3 = <div> {1} {"That is a number"} </div>; 30 return (<div>M [all...] |
H A D | jsxParsingError2.js | 12 // Issue error about missing span closing tag, not missing div closing tag 13 let x1 = <div><span></div>; 16 let x2 = <div></span>; 20 let x3 = <div>; 24 let x4 = <div><div></span>; 27 let x5 = <div><span> 33 // Issue error about missing span closing tag, not missing div closing tag
34 var x1 = <div><spa [all...] |
H A D | tsxParseTests1.js | 4 interface IntrinsicElements { div; span; } 7 var x = <div><div><span><div></div></span></div></div>; 11 var x = <div><div><span><div></di [all...] |
H A D | jsxInvalidEsprimaTestSuite.js | 40 var x = /* Leading trivia */ <div>one</div><div>two</div>;;
42 var x = <div>one</div> /* intervening comment */ <div>two</div>;;
48 <div className"app">;
50 <div {prop [all...] |
H A D | checkJsxChildrenProperty9.js | 5 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>; 6 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>; 7 let k3 = <div> {1} {"That is a number"} </div>;
14 var k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
15 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
[all...] |
H A D | jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsx).js | 6 <div> 7 <div /> 8 </div> 12 <div> 13 <div /> 14 <div /> 15 </div> 19 <div> 20 {[1, 2].map(i => <div key={i}>{i}</div>)} [all...] |
H A D | tsxStatelessFunctionComponents1.js | 3 return <div> Default Greeting </div>; 7 return <div>Hello, {x}</div>; 10 return <div>Hello, {name}</div>; 13 return <div>Hi Hi</div>; 60 return <div> Default Greeting </div>;
[all...] |
H A D | jsxJsxsCjsTransformNestedSelfClosingChild(jsx=react-jsxdev).js | 6 <div> 7 <div /> 8 </div> 12 <div> 13 <div /> 14 <div /> 15 </div> 19 <div> 20 {[1, 2].map(i => <div key={i}>{i}</div>)} [all...] |
H A D | tsxAttributeResolution14.js | 7 div: any; 19 return <div>props.primaryText</div> 24 <div> 28 </div> 34 return <div>props.primaryText</div>;
37 return (<div> 44 </div>);
|
/third_party/ffmpeg/libavcodec/mips/ |
H A D | aacsbr_mips.h | 158 float *v0, int *v_off, const unsigned int div) in sbr_qmf_synthesis_mips() 161 const float *sbr_qmf_window = div ? sbr_qmf_window_ds : sbr_qmf_window_us; in sbr_qmf_synthesis_mips() 162 const int step = 128 >> div; in sbr_qmf_synthesis_mips() 171 int saved_samples = (1280 - 128) >> div; in sbr_qmf_synthesis_mips() 178 if (div) { in sbr_qmf_synthesis_mips() 192 if(div == 0) in sbr_qmf_synthesis_mips() 474 fdsp->vector_fmul (out, v , sbr_qmf_window , 64 >> div); in sbr_qmf_synthesis_mips() 475 fdsp->vector_fmul_add(out, v + ( 192 >> div), sbr_qmf_window + ( 64 >> div), out , 64 >> div); in sbr_qmf_synthesis_mips() 154 sbr_qmf_synthesis_mips(FFTContext *mdct, SBRDSPContext *sbrdsp, AVFloatDSPContext *fdsp, float *out, float X[2][38][64], float mdct_buf[2][64], float *v0, int *v_off, const unsigned int div) sbr_qmf_synthesis_mips() argument [all...] |
/third_party/node/test/fixtures/wpt/dom/events/resources/ |
H A D | prefixed-animation-event-tests.js | 36 function triggerAnimation(div) { 38 div.classList.add('transition'); 40 div.style.animation = `anim ${animationCssStyle}`; 45 const div = createDiv(t); 47 assert_equals(div[unprefixedHandler], null, 49 assert_equals(div[prefixedHandler], null, 53 div[unprefixedHandler] = () => { }; 55 assert_not_equals(div[unprefixedHandler], null, 57 assert_equals(div[prefixedHandler], null, 60 div[prefixedHandle [all...] |
/third_party/decimal.js/test/modules/ |
H A D | clone.js | 43 t(x1.div(3).eq(2)); 44 t(x2.div(3).eq(1.7)); 45 t(x3.div(3).eq(1.67)); 46 t(x4.div(3).eq(1.667)); 47 t(x5.div(3).eq(1.6667)); 48 t(x6.div(3).eq(1.66667)); 49 t(x7.div(3).eq(1.666667)); 50 t(x8.div(3).eq(1.6666667)); 51 t(x9.div(3).eq(1.66666667)); 52 t(x .div( [all...] |