/third_party/typescript/tests/baselines/reference/ |
D | checkJsxChildrenProperty14.types | 18 class Button extends React.Component<any, any> { 19 >Button : Button 27 return (<div>My Button</div>) 28 >(<div>My Button</div>) : JSX.Element 29 ><div>My Button</div> : JSX.Element 39 return <h1>Just Another Button</h1>; 40 ><h1>Just Another Button</h1> : JSX.Element 59 let k1 = <Comp a={10} b="hi"><></><Button /><AnotherButton /></Comp>; 61 ><Comp a={10} b="hi"><></><Button /><AnotherButton /></Comp> : JSX.Element 67 ><Button /> : JSX.Element [all …]
|
D | checkJsxChildrenProperty6.types | 18 class Button extends React.Component<any, any> { 19 >Button : Button 27 return (<div>My Button</div>) 28 >(<div>My Button</div>) : JSX.Element 29 ><div>My Button</div> : JSX.Element 39 return <h1>Just Another Button</h1>; 40 ><h1>Just Another Button</h1> : JSX.Element 63 ><Comp a={10} b="hi"> <Button /> <AnotherButton /> </Comp> : JSX.Element 69 <Button /> 70 ><Button /> : JSX.Element [all …]
|
D | checkJsxChildrenProperty8.types | 18 class Button extends React.Component<any, any> { 19 >Button : Button 27 return (<div>My Button</div>) 28 >(<div>My Button</div>) : JSX.Element 29 ><div>My Button</div> : JSX.Element 39 return <h1>Just Another Button</h1>; 40 ><h1>Just Another Button</h1> : JSX.Element 59 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 61 ><Comp a={10} b="hi"><Button /> <AnotherButton /></Comp> : JSX.Element 66 ><Button /> : JSX.Element [all …]
|
D | checkJsxChildrenProperty7.types | 18 class Button extends React.Component<any, any> { 19 >Button : Button 27 return (<div>My Button</div>) 28 >(<div>My Button</div>) : JSX.Element 29 ><div>My Button</div> : JSX.Element 39 return <h1>Just Another Button</h1>; 40 ><h1>Just Another Button</h1> : JSX.Element 59 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 61 ><Comp a={10} b="hi"><Button /> <AnotherButton /></Comp> : JSX.Element 66 ><Button /> : JSX.Element [all …]
|
D | checkJsxChildrenProperty14.js | 10 class Button extends React.Component<any, any> { class 12 return (<div>My Button</div>) 17 return <h1>Just Another Button</h1>; 25 let k1 = <Comp a={10} b="hi"><></><Button /><AnotherButton /></Comp>; 26 let k2 = <Comp a={10} b="hi"><><Button /></><AnotherButton /></Comp>; 27 let k3 = <Comp a={10} b="hi"><><Button /><AnotherButton /></></Comp>; 40 let k4 = <SingleChildComp a={10} b="hi"><><Button /><AnotherButton /></></SingleChildComp>; 43 let k5 = <SingleChildComp a={10} b="hi"><></><Button /><AnotherButton /></SingleChildComp>; 64 var Button = /** @class */ (function (_super) { 65 __extends(Button, _super); [all …]
|
D | checkJsxChildrenProperty6.js | 10 class Button extends React.Component<any, any> { class 12 return (<div>My Button</div>) 17 return <h1>Just Another Button</h1>; 27 <Button /> 36 <Button /> 40 let k3 = <Comp a={10} b="hi"><Button /> 44 let k4 = <Comp a={10} b="hi"><Button /></Comp>; 65 var Button = /** @class */ (function (_super) { 66 __extends(Button, _super); 67 function Button() { class in Button [all …]
|
D | checkJsxChildrenProperty8.js | 10 class Button extends React.Component<any, any> { class 12 return (<div>My Button</div>) 17 return <h1>Just Another Button</h1>; 25 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 26 let k2 = <Comp a={10} b="hi"><Button /> 28 let k3 = <Comp a={10} b="hi"> <Button /> 30 let k4 = <Comp a={10} b="hi"><Button /> </Comp>; 51 var Button = /** @class */ (function (_super) { 52 __extends(Button, _super); 53 function Button() { class in Button [all …]
|
D | checkJsxChildrenProperty7.js | 10 class Button extends React.Component<any, any> { class 12 return (<div>My Button</div>) 17 return <h1>Just Another Button</h1>; 25 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 26 let k2 = <Comp a={10} b="hi"><Button /> 28 let k3 = <Comp a={10} b="hi"> <Button /> 50 var Button = /** @class */ (function (_super) { 51 __extends(Button, _super); 52 function Button() { class in Button 55 Button.prototype.render = function () { [all …]
|
D | checkJsxChildrenProperty5.types | 12 children: Button; 13 >children : Button 16 class Button extends React.Component<any, any> { 17 >Button : Button 25 return (<div>My Button</div>) 26 >(<div>My Button</div>) : JSX.Element 27 ><div>My Button</div> : JSX.Element 60 ><Comp a={10} b="hi"> <Button /> </Comp> : JSX.Element 66 <Button /> 67 ><Button /> : JSX.Element [all …]
|
D | checkJsxChildrenProperty5.js | 7 children: Button; 10 class Button extends React.Component<any, any> { class 12 return (<div>My Button</div>) 26 <Button /> 30 {Button} 52 var Button = /** @class */ (function (_super) { 53 __extends(Button, _super); 54 function Button() { class in Button 57 Button.prototype.render = function () { 58 return (<div>My Button</div>); [all …]
|
D | checkJsxChildrenProperty10.js | 12 class Button { 15 return (<div>My Button</div>) 23 let k4 = <Button> <h2> Hello </h2> </Button>; 26 var Button = /** @class */ (function () { class 27 function Button() { class in Button 29 Button.prototype.render = function () { 30 return (<div>My Button</div>); 32 return Button; 38 var k4 = <Button> <h2> Hello </h2> </Button>;
|
D | checkJsxChildrenProperty11.js | 12 class Button { 15 return (<div>My Button</div>) 23 let k4 = <Button> <h2> Hello </h2> </Button>; 26 var Button = /** @class */ (function () { class 27 function Button() { class in Button 29 Button.prototype.render = function () { 30 return (<div>My Button</div>); 32 return Button; 38 var k4 = <Button> <h2> Hello </h2> </Button>;
|
D | checkJsxChildrenProperty11.types | 19 class Button { 20 >Button : Button 28 return (<div>My Button</div>) 29 >(<div>My Button</div>) : JSX.Element 30 ><div>My Button</div> : JSX.Element 74 let k4 = <Button> <h2> Hello </h2> </Button>; 76 ><Button> <h2> Hello </h2> </Button> : JSX.Element 77 >Button : typeof Button 81 >Button : typeof Button
|
D | checkJsxChildrenProperty10.types | 19 class Button { 20 >Button : Button 28 return (<div>My Button</div>) 29 >(<div>My Button</div>) : JSX.Element 30 ><div>My Button</div> : JSX.Element 74 let k4 = <Button> <h2> Hello </h2> </Button>; 76 ><Button> <h2> Hello </h2> </Button> : JSX.Element 77 >Button : typeof Button 81 >Button : typeof Button
|
D | tsxExternalModuleEmit1.js | 12 import { Button } from './button'; 17 return <Button />; 25 export class Button extends React.Component<any, any> { class 51 exports.Button = void 0; 53 var Button = /** @class */ (function (_super) { 54 __extends(Button, _super); 55 function Button() { class in Button 58 Button.prototype.render = function () { 61 return Button; 63 exports.Button = Button; [all …]
|
D | checkJsxChildrenProperty8.symbols | 22 class Button extends React.Component<any, any> { 23 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 29 >render : Symbol(Button.render, Decl(file.tsx, 8, 48)) 31 return (<div>My Button</div>) 41 return <h1>Just Another Button</h1>; 60 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 65 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 69 let k2 = <Comp a={10} b="hi"><Button /> 74 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 80 let k3 = <Comp a={10} b="hi"> <Button /> [all …]
|
D | checkJsxChildrenProperty6.symbols | 22 class Button extends React.Component<any, any> { 23 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 29 >render : Symbol(Button.render, Decl(file.tsx, 8, 48)) 31 return (<div>My Button</div>) 41 return <h1>Just Another Button</h1>; 68 <Button /> 69 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 87 <Button /> 88 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 96 let k3 = <Comp a={10} b="hi"><Button /> [all …]
|
D | tsxExternalModuleEmit1.types | 14 import { Button } from './button'; 15 >Button : typeof Button 26 return <Button />; 27 ><Button /> : error 28 >Button : typeof Button 37 export class Button extends React.Component<any, any> { 38 >Button : Button
|
D | checkJsxChildrenProperty14.symbols | 22 class Button extends React.Component<any, any> { 23 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 29 >render : Symbol(Button.render, Decl(file.tsx, 8, 48)) 31 return (<div>My Button</div>) 41 return <h1>Just Another Button</h1>; 60 let k1 = <Comp a={10} b="hi"><></><Button /><AnotherButton /></Comp>; 65 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 69 let k2 = <Comp a={10} b="hi"><><Button /></><AnotherButton /></Comp>; 74 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 78 let k3 = <Comp a={10} b="hi"><><Button /><AnotherButton /></></Comp>; [all …]
|
D | checkJsxChildrenProperty5.symbols | 14 children: Button; 16 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 19 class Button extends React.Component<any, any> { 20 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 26 >render : Symbol(Button.render, Decl(file.tsx, 8, 48)) 28 return (<div>My Button</div>) 63 <Button /> 64 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 77 {Button} 78 >Button : Symbol(Button, Decl(file.tsx, 6, 1))
|
D | checkJsxChildrenProperty7.symbols | 22 class Button extends React.Component<any, any> { 23 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 29 >render : Symbol(Button.render, Decl(file.tsx, 8, 48)) 31 return (<div>My Button</div>) 41 return <h1>Just Another Button</h1>; 60 let k1 = <Comp a={10} b="hi"><Button /> <AnotherButton /></Comp>; 65 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 69 let k2 = <Comp a={10} b="hi"><Button /> 74 >Button : Symbol(Button, Decl(file.tsx, 6, 1)) 80 let k3 = <Comp a={10} b="hi"> <Button /> [all …]
|
D | tsxExternalModuleEmit1.symbols | 16 import { Button } from './button'; 17 >Button : Symbol(Button, Decl(app.tsx, 3, 8)) 28 return <Button />; 29 >Button : Symbol(Button, Decl(app.tsx, 3, 8)) 38 export class Button extends React.Component<any, any> { 39 >Button : Symbol(Button, Decl(button.tsx, 0, 31)) 45 >render : Symbol(Button.render, Decl(button.tsx, 2, 55))
|
D | tsxAttributesHasInferrableIndex.types | 23 function Button(attributes: Attributes | undefined, contents: string[]) { 24 >Button : (attributes: Attributes | undefined, contents: string[]) => string 31 const b = <Button></Button> 33 ><Button></Button> : error 34 >Button : (attributes: Attributes | undefined, contents: string[]) => string 35 >Button : (attributes: Attributes | undefined, contents: string[]) => string
|
D | tsxReactPropsInferenceSucceedsOnIntersections.types | 16 declare class Button<T = {}> extends React.Component<ButtonProps<T>> { } 17 >Button : Button<T> 27 const CustomButton: React.SFC<CustomButtonProps> = props => <Button {...props} />; 30 >props => <Button {...props} /> : (props: CustomButtonProps & { children?: React.ReactNode; }) => J… 32 ><Button {...props} /> : JSX.Element 33 >Button : typeof Button
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
D | RecorderActivity.java | 21 import android.widget.Button; 33 private Button mRecordButton; 34 private Button mStopButton; 35 private Button mPlayButton; 36 private Button mShareButton; 48 mRecordButton = (Button) findViewById(R.id.button_start_recording); in onCreate() 49 mStopButton = (Button) findViewById(R.id.button_stop_record_play); in onCreate() 50 mPlayButton = (Button) findViewById(R.id.button_start_playback); in onCreate() 51 mShareButton = (Button) findViewById(R.id.button_share); in onCreate()
|