Home
last modified time | relevance | path

Searched refs:Hello (Results 1 - 25 of 75) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
H A DdeclarationEmitClassMemberNameConflict2.js4 enum Hello {
17 Hello = Hello;
25 var Hello; variable
26 (function (Hello) {
27 Hello[Hello["World"] = 0] = "World";
28 })(Hello || (Hello = {}));
38 this.Hello
[all...]
H A DcheckJsxChildrenProperty10.js20 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>;
23 let k4 = <Button> <h2> Hello </h2> </Button>;
35 var k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
36 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
38 var k4 = <Button> <h2> Hello </h2> </Button>;
H A DcheckJsxChildrenProperty11.js20 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>;
23 let k4 = <Button> <h2> Hello </h2> </Button>;
35 var k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
36 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
38 var k4 = <Button> <h2> Hello </h2> </Button>;
H A DimportAsBaseClass.js10 class Hello extends Greeter { }
43 var Hello = /** @class */ (function (_super) {
44 __extends(Hello, _super);
45 function Hello() {
48 return Hello;
H A DmoduleMerge.js8 public Hello(): string
19 public Hello(): string
33 B.prototype.Hello = function () {
43 B.prototype.Hello = function () {
H A DcheckJsxChildrenProperty9.js5 let k1 = <div> <h2> Hello </h2> <h1> world </h1></div>;
6 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</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>;
H A DasOperator3.js7 var d = `Hello ${123} World` as string;
8 var e = `Hello` as string;
10 var g = tag `Hello ${123} World` as string;
11 var h = tag `Hello` as string;
21 var d = "Hello ".concat(123, " World");
22 var e = "Hello";
24 var g = tag(__makeTemplateObject(["Hello ", " World"], ["Hello ", " World"]), 123);
25 var h = tag(__makeTemplateObject(["Hello"], ["Hello"]));
[all...]
H A DcheckJsxChildrenProperty12.js18 <div>Hello World</div>
30 return (<button>Hello</button>);
66 <div>Hello World</div>
78 return (<button>Hello</button>);
H A DcheckJsxChildrenProperty13.js14 <div>Hello World</div>
25 return (<button>Hello</button>);
57 <div>Hello World</div>
68 return (<button>Hello</button>);
H A DtsxStatelessFunctionComponentOverload6.js44 const b1 = <MainButton onClick={(e) => {}}>Hello world</MainButton>;
54 const b11 = <MainButton onClick={(e) => {}} className="hello" data-format>Hello world</MainButton>;
55 const b12 = <MainButton data-format="Hello world" />
83 var b1 = <MainButton onClick={function (e) { }}>Hello world</MainButton>;
93 var b11 = <MainButton onClick={function (e) { }} className="hello" data-format>Hello world</MainButton>;
94 var b12 = <MainButton data-format="Hello world"/>;
H A DtsxStatelessFunctionComponents1.js7 return <div>Hello, {x}</div>;
10 return <div>Hello, {name}</div>;
63 return <div>Hello, {x}</div>;
67 return <div>Hello, {name}</div>;
H A DtsxDynamicTagName1.js3 <CustomTag> Hello World </CustomTag> // No error
7 <CustomTag> Hello World </CustomTag>; // No error
H A DtaggedTemplateStringsWithTagNamedDeclareES6.js5 declare `Hello ${0} world!`;
10 declare `Hello ${0} world!`;
H A DtsxDynamicTagName2.js10 <customTag> Hello World </customTag> // This should be an error. The lower-case is look up as an intrinsic element name
14 <customTag> Hello World </customTag>; // This should be an error. The lower-case is look up as an intrinsic element name
H A DtsxDynamicTagName3.js10 <CustomTag> Hello World </CustomTag> // This should be an error. we will try look up string literal type in JSX.IntrinsicElements
14 <CustomTag> Hello World </CustomTag>; // This should be an error. we will try look up string literal type in JSX.IntrinsicElements
H A DtsxDynamicTagName4.js11 <CustomTag> Hello World </CustomTag>
15 <CustomTag> Hello World </CustomTag>;
H A DerrorSpanForUnclosedJsxTag.js10 let x = < Foo.Bar >Hello
12 let y = < Baz >Hello
20 "Hello let y = ",
21 React.createElement(Baz, null, "Hello"));
/third_party/rust/crates/cxx/tests/
H A Dcxx_string.rs30 write!(s, "Hello, {name}!").unwrap(); in test_fmt_write()
31 assert_eq!(s.to_str(), Ok("Hello, world!")); in test_fmt_write()
37 let mut reader: &[u8] = b"Hello, world!"; in test_io_write()
40 assert_eq!(s.to_str(), Ok("Hello, world!")); in test_io_write()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Hello/
H A DHello.cpp1 //===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
9 // This file implements two versions of the LLVM "Hello World" pass described
25 // Hello - The first implementation, without getAnalysisUsage.
26 struct Hello : public FunctionPass { struct
28 Hello() : FunctionPass(ID) {} in Hello() function
32 errs() << "Hello: ";
39 char Hello::ID = 0;
40 static RegisterPass<Hello> X("hello", "Hello World Pass");
50 errs() << "Hello
[all...]
/third_party/node/test/fixtures/source-map/
H A Dthrow-string.js1 function Hello(){throw"goodbye"}Hello(); function
H A Dthrow-string-original.js4 function Hello() { function
8 Hello();
H A Distanbul-throw-original.js4 function Hello() { function
9 Hello();
H A Duglify-throw-original.js4 function Hello() { function
9 Hello();
/third_party/node/benchmark/napi/function_call/
H A Dbinding.cc6 void Hello(const v8::FunctionCallbackInfo<v8::Value>& args) { in Hello() function
13 NODE_SET_METHOD(target, "hello", Hello); in Initialize()
H A Dnapi_binding.c6 static napi_value Hello(napi_env env, napi_callback_info info) { in Hello() function
19 Hello, in NAPI_MODULE_INIT()

Completed in 22 milliseconds

123