/third_party/typescript/tests/baselines/reference/ |
H A D | declarationEmitClassMemberNameConflict2.js | 4 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 D | checkJsxChildrenProperty10.js | 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>; 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 D | checkJsxChildrenProperty11.js | 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>; 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 D | importAsBaseClass.js | 10 class Hello extends Greeter { } 43 var Hello = /** @class */ (function (_super) {
44 __extends(Hello, _super);
45 function Hello() {
48 return Hello;
|
H A D | moduleMerge.js | 8 public Hello(): string 19 public Hello(): string 33 B.prototype.Hello = function () {
43 B.prototype.Hello = function () {
|
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>; 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 D | asOperator3.js | 7 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 D | checkJsxChildrenProperty12.js | 18 <div>Hello World</div> 30 return (<button>Hello</button>); 66 <div>Hello World</div> 78 return (<button>Hello</button>);
|
H A D | checkJsxChildrenProperty13.js | 14 <div>Hello World</div> 25 return (<button>Hello</button>); 57 <div>Hello World</div> 68 return (<button>Hello</button>);
|
H A D | tsxStatelessFunctionComponentOverload6.js | 44 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 D | tsxStatelessFunctionComponents1.js | 7 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 D | tsxDynamicTagName1.js | 3 <CustomTag> Hello World </CustomTag> // No error
7 <CustomTag> Hello World </CustomTag>; // No error
|
H A D | taggedTemplateStringsWithTagNamedDeclareES6.js | 5 declare `Hello ${0} world!`;
10 declare `Hello ${0} world!`;
|
H A D | tsxDynamicTagName2.js | 10 <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 D | tsxDynamicTagName3.js | 10 <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 D | tsxDynamicTagName4.js | 11 <CustomTag> Hello World </CustomTag>
15 <CustomTag> Hello World </CustomTag>;
|
H A D | errorSpanForUnclosedJsxTag.js | 10 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 D | cxx_string.rs | 30 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 D | Hello.cpp | 1 //===- 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 D | throw-string.js | 1 function Hello(){throw"goodbye"}Hello(); function
|
H A D | throw-string-original.js | 4 function Hello() { function 8 Hello();
|
H A D | istanbul-throw-original.js | 4 function Hello() { function 9 Hello();
|
H A D | uglify-throw-original.js | 4 function Hello() { function 9 Hello();
|
/third_party/node/benchmark/napi/function_call/ |
H A D | binding.cc | 6 void Hello(const v8::FunctionCallbackInfo<v8::Value>& args) { in Hello() function 13 NODE_SET_METHOD(target, "hello", Hello); in Initialize()
|
H A D | napi_binding.c | 6 static napi_value Hello(napi_env env, napi_callback_info info) { in Hello() function 19 Hello, in NAPI_MODULE_INIT()
|