Home
last modified time | relevance | path

Searched refs:GreeterImpl (Results 1 – 24 of 24) sorted by relevance

/external/google-fruit/extras/doc/
Dgreeter.tex6 \newnamedcomponent{0}{0}{bind1}{bind<Greeter, GreeterImpl>}
7 \newcomponent{6}{0}{GreeterImpl}
12 \umlassemblyconnector[interface=Writer]{GreeterImpl}{bind2}
13 \umlassemblyconnector[interface=GreeterImpl]{bind1}{GreeterImpl}
Dsimple_greeter.tex6 \newcomponent{0}{0}{GreeterImpl}
8 \umlprovidedinterface[interface=Greeter, distance=2.5, padding=0.5cm]{GreeterImpl}
9 \umlassemblyconnector[interface=Writer, distance=5]{GreeterImpl}{StdoutWriter}
12 \umlassoc{GreeterComponent-west-port}{GreeterImpl-west-interface}
Dinject_typedef_templated_constructor.tex5 \newnamedcomponent{0}{2.5}{GreeterImpl1}{GreeterImpl}
6 \newnamedcomponent{0}{0}{GreeterImpl2}{GreeterImpl}
7 \umlprovidedinterface[interface=GreeterImpl, distance=2.5, padding=0.9cm]{GreeterImpl1}
9 \umlprovidedinterface[interface=std::function<std::unique\_ptr<GreeterImpl>()>, distance=5.5, paddi…
Dinject_typedef_greeter.tex5 \newnamedcomponent{0}{2.5}{GreeterImpl1}{GreeterImpl}
6 \newnamedcomponent{0}{0}{GreeterImpl2}{GreeterImpl}
7 \umlprovidedinterface[interface=GreeterImpl, distance=2.5, padding=0.9cm]{GreeterImpl1}
9 \umlprovidedinterface[interface=std::function<std::unique\_ptr<GreeterImpl>()>, distance=5.5, paddi…
Dinject_macro.tex5 \newnamedcomponent{0}{2.5}{GreeterImpl1}{GreeterImpl}
6 \newnamedcomponent{0}{0}{GreeterImpl2}{GreeterImpl}
7 \umlprovidedinterface[interface=GreeterImpl, distance=2.5, padding=0.9cm]{GreeterImpl1}
9 \umlprovidedinterface[interface=std::function<std::unique\_ptr<GreeterImpl>()>, distance=5.5, paddi…
Dinject_macro_template.tex5 \newnamedcomponent{0}{2.5}{GreeterImpl1}{GreeterImpl}
6 \newnamedcomponent{0}{0}{GreeterImpl2}{GreeterImpl}
7 \umlprovidedinterface[interface=GreeterImpl<W>, distance=3.2, padding=0.9cm]{GreeterImpl1}
10 \umlprovidedinterface[interface=std::function<std::unique\_ptr<GreeterImpl<W>{}>()>, distance=5.9, …
Dregister_constructor.tex7 \umlprovidedinterface[interface=GreeterImpl, distance=3.3, padding=0.9cm]{registerConstructor1}
9 \umlprovidedinterface[interface=std::function<std::unique\_ptr<GreeterImpl>()>, distance=6, padding…
Dregister_constructor_component.tex9 \umlassemblyconnector[interface=GreeterImpl, distance=7]{registerConstructor}{bind}
/external/google-fruit/examples/testing/
Dgreeter.cpp19 class GreeterImpl : public Greeter { class
21 INJECT(GreeterImpl()) = default;
30 .bind<Greeter, GreeterImpl>(); in getGreeterComponent()
/external/google-fruit/examples/hello_world/
Dmain.cpp29 class GreeterImpl : public Greeter { class
36 INJECT(GreeterImpl(Writer* writer)) : writer(writer) {} in INJECT()
44 return fruit::createComponent().bind<Writer, StdoutWriter>().bind<Greeter, GreeterImpl>(); in getGreeterComponent()
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/GreeterServer/
DProgram.cs22 class GreeterImpl : Greeter.GreeterBase class
39 Services = { Greeter.BindService(new GreeterImpl()) }, in Main()
/external/grpc-grpc/examples/csharp/Helloworld/GreeterServer/
DProgram.cs22 class GreeterImpl : Greeter.GreeterBase class
39 Services = { Greeter.BindService(new GreeterImpl()) }, in Main()
/external/grpc-grpc-java/examples/example-kotlin/src/test/kotlin/io/grpc/examples/helloworld/
DHelloWorldServerTest.kt21 import io.grpc.examples.helloworld.HelloWorldServer.GreeterImpl
60 .forName(serverName).directExecutor().addService(GreeterImpl()).build().start()) in greeterImpl_replyMessage()
/external/grpc-grpc-java/examples/src/test/java/io/grpc/examples/helloworld/
DHelloWorldServerTest.java21 import io.grpc.examples.helloworld.HelloWorldServer.GreeterImpl;
58 .forName(serverName).directExecutor().addService(new GreeterImpl()).build().start()); in greeterImpl_replyMessage()
/external/grpc-grpc/examples/csharp/HelloworldXamarin/iOS/
DViewController.cs61 Services = { Greeter.BindService(new GreeterImpl()) }, in SayHello()
82 class GreeterImpl : Greeter.GreeterBase class in HelloworldXamarin.iOS.ViewController
/external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/
DMainActivity.cs52 Services = { Greeter.BindService(new GreeterImpl()) }, in SayHello()
74 class GreeterImpl : Greeter.GreeterBase class in HelloworldXamarin.Droid.MainActivity
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/helloworld/
DHelloWorldServer.java37 .addService(new GreeterImpl()) in start()
76 static class GreeterImpl extends GreeterGrpc.GreeterImplBase { class in HelloWorldServer
/external/grpc-grpc-java/examples/example-kotlin/src/main/kotlin/io/grpc/examples/helloworld/
DHelloWorldServer.kt40 .addService(GreeterImpl()) in start()
66 internal class GreeterImpl : GreeterGrpc.GreeterImplBase() { class in io.grpc.examples.helloworld.HelloWorldServer
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/header/
DCustomHeaderServer.java42 .addService(ServerInterceptors.intercept(new GreeterImpl(), new HeaderServerInterceptor())) in start()
81 private static class GreeterImpl extends GreeterGrpc.GreeterImplBase { class in CustomHeaderServer
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/advanced/
DHelloJsonServer.java54 .addService(new GreeterImpl()) in start()
93 private static class GreeterImpl implements BindableService { class in HelloJsonServer
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/helloworldtls/
DHelloWorldServerTls.java74 .addService(new GreeterImpl()) in start()
127 static class GreeterImpl extends GreeterGrpc.GreeterImplBase { class in HelloWorldServerTls
/external/opencensus-java/examples/src/main/java/io/opencensus/examples/grpc/helloworld/
DHelloWorldServer.java87 server = ServerBuilder.forPort(serverPort).addService(new GreeterImpl()).build().start(); in start()
155 static class GreeterImpl extends GreeterGrpc.GreeterImplBase { class in HelloWorldServer
/external/grpc-grpc/doc/csharp/
Dserver_reflection.md24 ServerReflection.BindService(new GreeterImpl()),
/external/grpc-grpc-java/documentation/
Dserver-reflection-tutorial.md45 .addService(new GreeterImpl())