Home
last modified time | relevance | path

Searched refs:ServiceGenerator (Results 1 – 17 of 17) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_service.cc57 ServiceGenerator::ServiceGenerator( in ServiceGenerator() function in google::protobuf::compiler::cpp::ServiceGenerator
65 ServiceGenerator::~ServiceGenerator() {} in ~ServiceGenerator()
67 void ServiceGenerator::GenerateDeclarations(io::Printer* printer) { in GenerateDeclarations()
78 void ServiceGenerator::GenerateInterface(io::Printer* printer) { in GenerateInterface()
122 void ServiceGenerator::GenerateStubDefinition(io::Printer* printer) { in GenerateStubDefinition()
153 void ServiceGenerator::GenerateMethodSignatures(VirtualOrNon virtual_or_non, in GenerateMethodSignatures()
170 void ServiceGenerator::GenerateImplementation(io::Printer* printer) { in GenerateImplementation()
212 void ServiceGenerator::GenerateNotImplementedMethods(io::Printer* printer) { in GenerateNotImplementedMethods()
229 void ServiceGenerator::GenerateCallMethod(io::Printer* printer) { in GenerateCallMethod()
270 void ServiceGenerator::GenerateGetPrototype(RequestOrResponse which, in GenerateGetPrototype()
[all …]
Dcpp_service.h56 class ServiceGenerator {
59 explicit ServiceGenerator(const ServiceDescriptor* descriptor,
62 ~ServiceGenerator();
114 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator);
Dcpp_file.h65 class ServiceGenerator; // service.h variable
194 std::vector<std::unique_ptr<ServiceGenerator>> service_generators_;
Dcpp_file.cc126 new ServiceGenerator(file->service(i), variables_, options)); in FileGenerator()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.h60 class ServiceGenerator {
62 explicit ServiceGenerator(const ServiceDescriptor* descriptor);
63 virtual ~ServiceGenerator();
74 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator);
77 class ImmutableServiceGenerator : public ServiceGenerator {
Djava_generator_factory.h47 class ServiceGenerator; // service.h variable
70 virtual ServiceGenerator* NewServiceGenerator(
89 virtual ServiceGenerator* NewServiceGenerator(
Djava_service.cc50 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor) in ServiceGenerator() function in google::protobuf::compiler::java::ServiceGenerator
53 ServiceGenerator::~ServiceGenerator() {} in ~ServiceGenerator()
58 : ServiceGenerator(descriptor), in ImmutableServiceGenerator()
Djava_generator_factory.cc77 ServiceGenerator* ImmutableGeneratorFactory::NewServiceGenerator( in NewServiceGenerator()
Djava_file.cc330 std::unique_ptr<ServiceGenerator> generator( in Generate()
664 std::unique_ptr<ServiceGenerator> generator( in GenerateSiblings()
666 GenerateSibling<ServiceGenerator>( in GenerateSiblings()
669 &ServiceGenerator::Generate); in GenerateSiblings()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DConfigurationCodeGenerator.java34 private final ServiceGenerator serviceGenerator;
40 this.serviceGenerator = new ServiceGenerator(checkNotNull(generatorContext), configuration); in ConfigurationCodeGenerator()
DServiceGenerator.java44 final class ServiceGenerator { class
51 ServiceGenerator(GeneratorContext generatorContext, CrossProfileConfigurationInfo configuration) { in ServiceGenerator() method in ServiceGenerator
DDispatcherGenerator.java26 import static com.google.android.enterprise.connectedapps.processor.ServiceGenerator.getConnectedAp…
/external/dagger2/java/dagger/hilt/android/processor/internal/androidentrypoint/
DServiceGenerator.java36 public final class ServiceGenerator { class
41 public ServiceGenerator(ProcessingEnvironment env, AndroidEntryPointMetadata metadata) { in ServiceGenerator() method in ServiceGenerator
DAndroidEntryPointProcessor.java76 new ServiceGenerator(getProcessingEnv(), metadata).generate(); in processEach()
DBUILD58 "ServiceGenerator.java",
/external/pigweed/pw_rpc/py/pw_rpc/
Dcodegen.py41 ServiceGenerator = Callable[[ProtoService, ProtoNode, OutputFile], None] variable
47 service: ServiceGenerator, client: ServiceGenerator) -> None: argument
/external/rust/crates/grpcio-compiler/src/
Dprost_codegen.rs9 use prost_build::{protoc, protoc_include, Config, Method, Service, ServiceGenerator};
76 impl ServiceGenerator for Generator {