/third_party/typescript/tests/baselines/reference/ |
D | emitDecoratorMetadata_isolatedModules(module=esnext).js | 20 class HelloWorld { class 64 var HelloWorld = /** @class */ (function () { 65 function HelloWorld() { class in HelloWorld 67 HelloWorld.prototype.handleEvent1 = function (event) { }; // Error 68 HelloWorld.prototype.handleEvent2 = function (event) { }; // Ok 69 HelloWorld.prototype.handleEvent3 = function (event) { return undefined; }; // Ok, Error 75 ], HelloWorld.prototype, "handleEvent1"); 81 ], HelloWorld.prototype, "handleEvent2"); 85 ], HelloWorld.prototype, "p1"); 89 ], HelloWorld.prototype, "p1_ns"); [all …]
|
D | emitDecoratorMetadata_isolatedModules(module=commonjs).js | 20 class HelloWorld { class 71 var HelloWorld = /** @class */ (function () { 72 function HelloWorld() { class in HelloWorld 74 HelloWorld.prototype.handleEvent1 = function (event) { }; // Error 75 HelloWorld.prototype.handleEvent2 = function (event) { }; // Ok 76 HelloWorld.prototype.handleEvent3 = function (event) { return undefined; }; // Ok, Error 82 ], HelloWorld.prototype, "handleEvent1"); 88 ], HelloWorld.prototype, "handleEvent2"); 92 ], HelloWorld.prototype, "p1"); 96 ], HelloWorld.prototype, "p1_ns"); [all …]
|
D | declFileEmitDeclarationOnly.symbols | 10 class HelloWorld { 11 >HelloWorld : Symbol(HelloWorld, Decl(helloworld.ts, 2, 1)) 14 >name : Symbol(HelloWorld.name, Decl(helloworld.ts, 5, 14)) 18 >hello : Symbol(HelloWorld.hello, Decl(helloworld.ts, 6, 3)) 24 >this.name : Symbol(HelloWorld.name, Decl(helloworld.ts, 5, 14)) 25 >this : Symbol(HelloWorld, Decl(helloworld.ts, 2, 1)) 26 >name : Symbol(HelloWorld.name, Decl(helloworld.ts, 5, 14))
|
D | emitDecoratorMetadata_isolatedModules(module=commonjs).symbols | 32 class HelloWorld { 33 >HelloWorld : Symbol(HelloWorld, Decl(index.ts, 4, 31)) 39 >handleEvent1 : Symbol(HelloWorld.handleEvent1, Decl(index.ts, 6, 18)) 47 >handleEvent2 : Symbol(HelloWorld.handleEvent2, Decl(index.ts, 8, 28)) 55 >p1 : Symbol(HelloWorld.p1, Decl(index.ts, 11, 28)) 62 >p1_ns : Symbol(HelloWorld.p1_ns, Decl(index.ts, 14, 10)) 70 >p2 : Symbol(HelloWorld.p2, Decl(index.ts, 17, 16)) 77 >handleEvent3 : Symbol(HelloWorld.handleEvent3, Decl(index.ts, 20, 10))
|
D | emitDecoratorMetadata_isolatedModules(module=esnext).symbols | 32 class HelloWorld { 33 >HelloWorld : Symbol(HelloWorld, Decl(index.ts, 4, 31)) 39 >handleEvent1 : Symbol(HelloWorld.handleEvent1, Decl(index.ts, 6, 18)) 47 >handleEvent2 : Symbol(HelloWorld.handleEvent2, Decl(index.ts, 8, 28)) 55 >p1 : Symbol(HelloWorld.p1, Decl(index.ts, 11, 28)) 62 >p1_ns : Symbol(HelloWorld.p1_ns, Decl(index.ts, 14, 10)) 70 >p2 : Symbol(HelloWorld.p2, Decl(index.ts, 17, 16)) 77 >handleEvent3 : Symbol(HelloWorld.handleEvent3, Decl(index.ts, 20, 10))
|
D | declFileEmitDeclarationOnly.types | 11 class HelloWorld { 12 >HelloWorld : HelloWorld
|
D | emitDecoratorMetadata_isolatedModules(module=esnext).types | 30 class HelloWorld { 31 >HelloWorld : HelloWorld
|
D | emitDecoratorMetadata_isolatedModules(module=commonjs).types | 30 class HelloWorld { 31 >HelloWorld : HelloWorld
|
D | declFileEmitDeclarationOnly.js | 6 class HelloWorld { class 22 declare class HelloWorld {
|
D | emitDecoratorMetadata_isolatedModules(module=esnext).errors.txt | 23 class HelloWorld {
|
/third_party/skia/example/ |
D | HelloWorld.cpp | 19 return new HelloWorld(argc, argv, platformData); in Create() 22 HelloWorld::HelloWorld(int argc, char** argv, void* platformData) in HelloWorld() function in HelloWorld 36 HelloWorld::~HelloWorld() { in ~HelloWorld() 41 void HelloWorld::updateTitle() { in updateTitle() 51 void HelloWorld::onBackendCreated() { in onBackendCreated() 57 void HelloWorld::onPaint(SkSurface* surface) { in onPaint() 107 void HelloWorld::onIdle() { in onIdle() 112 bool HelloWorld::onChar(SkUnichar c, skui::ModifierKey modifiers) { in onChar()
|
D | HelloWorld.h | 16 class HelloWorld : public sk_app::Application, sk_app::Window::Layer { 18 HelloWorld(int argc, char** argv, void* platformData); 19 ~HelloWorld() override;
|
/third_party/openssl/test/ssl-tests/ |
D | 27-ticket-appdata.cnf.in | 28 "SessionTicketAppData" => "HelloWorld", 36 "ExpectedSessionTicketAppData" => "HelloWorld", 67 "SessionTicketAppData" => "HelloWorld", 75 "ExpectedSessionTicketAppData" => "HelloWorld",
|
D | 27-ticket-appdata.cnf | 35 ExpectedSessionTicketAppData = HelloWorld 43 SessionTicketAppData = HelloWorld 104 ExpectedSessionTicketAppData = HelloWorld 112 SessionTicketAppData = HelloWorld
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.0/module_identifiers_allow_for_js_extension/ |
D | module_identifiers_allow_for_js_extension_1.ts | 23 import { HelloWorld } from "./test_js_extension.js" 25 let world = new HelloWorld("HelloWorld.txt");
|
D | test_js_extension.ts | 17 export class HelloWorld { class
|
/third_party/typescript/tests/cases/compiler/ |
D | declFileEmitDeclarationOnly.ts | 9 class HelloWorld { class
|
D | emitDecoratorMetadata_isolatedModules.ts | 23 class HelloWorld { class
|
/third_party/node/test/parallel/ |
D | test-stream-finished.js | 488 class HelloWorld extends Duplex { class 524 const instance = new HelloWorld(response);
|
/third_party/rust/crates/heck/ |
D | README.md | 21 That is, "HelloWorld" is segmented `Hello|World` whereas "XMLHttpRequest" is
|
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
D | json_test.cc | 170 TEST(JsonStdStringWriterTest, HelloWorld) { in TEST() argument
|
/third_party/skia/gn/ |
D | sksl_tests.gni | 396 "/sksl/shared/HelloWorld.sksl",
|
/third_party/skia/ |
D | BUILD.gn | 3495 test_app("HelloWorld") { 3496 sources = [ "example/HelloWorld.cpp" ]
|
/third_party/node/tools/inspector_protocol/encoding/ |
D | encoding_test.cc | 1328 TEST(JsonStdStringWriterTest, HelloWorld) { in TEST() argument
|