Home
last modified time | relevance | path

Searched defs:sayHello (Results 1 – 22 of 22) sorted by relevance

/third_party/typescript/tests/cases/compiler/
DsuperInLambdas.ts3 sayHello(): void { method in User
19 sayHello(): void { method in RegisteredUser
35 sayHello(): void { method in RegisteredUser2
49 sayHello(): void { method in RegisteredUser3
63 sayHello(): void { method in RegisteredUser4
DsuperErrors.ts10 sayHello(): void { method in User
33 sayHello(): void { method in RegisteredUser
DesModuleInterop.ts3 export function sayHello(): string; function
DesModuleInteropImportTSLibHasImport.ts13 const sayHello = (name?: string) => void (`Hello, ${name}!`); constant
DemitThisInSuperMethodCall.ts2 sayHello() { method in User
DjsdocTypeNongenericInstantiationAttempt.ts8 function sayHello(somebody) { function
/third_party/typescript/tests/baselines/reference/
DsuperInLambdas.js90 User.prototype.sayHello = function () { method in User
101 _super.prototype.sayHello.call(_this); method in _super
103 var x = function () { return _super.prototype.sayHello.call(_this); }; method in _super
106 RegisteredUser.prototype.sayHello = function () { method in RegisteredUser
109 _super.prototype.sayHello.call(this); method in _super
111 var x = function () { return _super.prototype.sayHello.call(_this); }; method in _super
121 … () { return function () { return function () { return _super.prototype.sayHello.call(_this); }; }… method in _super
124 RegisteredUser2.prototype.sayHello = function () { method in RegisteredUser2
127 … () { return function () { return function () { return _super.prototype.sayHello.call(_this); }; }… method in _super
140 RegisteredUser3.prototype.sayHello = function () { method in RegisteredUser3
[all …]
DtypeInferenceWithExcessProperties.js29 sayHello() { method
52 sayHello: function () { method
DsuperErrors.js80 User.prototype.sayHello = function () { method in User
103 RegisteredUser.prototype.sayHello = function () { method in RegisteredUser
105 _super.prototype.sayHello.call(this); method in _super
DemitThisInSuperMethodCall.js3 sayHello() { method in User
49 User.prototype.sayHello = function () { method in User
DesModuleInteropImportTSLibHasImport.js10 const sayHello = (name?: string) => void (`Hello, ${name}!`); function
/third_party/grpc/examples/node/static_codegen/
Dgreeter_server.js27 function sayHello(call, callback) { function
39 server.addService(services.GreeterService, {sayHello: sayHello}); property
/third_party/grpc/examples/node/dynamic_codegen/
Dgreeter_server.js36 function sayHello(call, callback) { function
46 server.addService(hello_proto.Greeter.service, {sayHello: sayHello}); property
/third_party/node/test/fixtures/cycles/
Droot.js25 exports.sayHello = function() { function
/third_party/node/test/fixtures/debugger/
Dbreak.js4 function sayHello() { function
/third_party/skia/third_party/externals/swiftshader/third_party/marl/examples/
Dhello_task.cpp37 marl::Event sayHello(marl::Event::Mode::Manual); in main() local
/third_party/grpc/examples/protos/
Dhellostreamingworld.proto25 rpc sayHello (HelloRequest) returns (stream HelloReply) {} rpc
/third_party/skia/experimental/tskit/build/
Dexterns.js3 Module.sayHello = function() {}; function
/third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/client/
Dmain.swift40 let sayHello = greeter.SayHello(Message<models_HelloRequest>(builder: &builder)) in greet() variable
/third_party/skia/experimental/tskit/npm_build/types/
Dindex.d.ts8 sayHello(x: number, y: number): void; method
/third_party/skia/experimental/tskit/interface/
Dpublic_api.d.ts4 sayHello(x: number, y: number): void; method
/third_party/grpc/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/cpp/
DHelloworldActivity.java164 public static native String sayHello(String host, int port, String message); in sayHello() method in HelloworldActivity