Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_service.cc45 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor, in ServiceGenerator() function in google::protobuf::compiler::cpp::ServiceGenerator
57 ServiceGenerator::~ServiceGenerator() {} in ~ServiceGenerator()
59 void ServiceGenerator::GenerateDeclarations(io::Printer* printer) { in GenerateDeclarations()
69 void ServiceGenerator::GenerateInterface(io::Printer* printer) { in GenerateInterface()
112 void ServiceGenerator::GenerateStubDefinition(io::Printer* printer) { in GenerateStubDefinition()
142 void ServiceGenerator::GenerateMethodSignatures( in GenerateMethodSignatures()
162 void ServiceGenerator::GenerateDescriptorInitializer( in GenerateDescriptorInitializer()
174 void ServiceGenerator::GenerateImplementation(io::Printer* printer) { in GenerateImplementation()
212 void ServiceGenerator::GenerateNotImplementedMethods(io::Printer* printer) { in GenerateNotImplementedMethods()
234 void ServiceGenerator::GenerateCallMethod(io::Printer* printer) { in GenerateCallMethod()
[all …]
Dcpp_service.h54 class ServiceGenerator {
57 explicit ServiceGenerator(const ServiceDescriptor* descriptor,
59 ~ServiceGenerator();
110 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator);
Dcpp_file.h62 class ServiceGenerator; // service.h variable
150 …google::protobuf::scoped_array<google::protobuf::scoped_ptr<ServiceGenerator> > service_generators…
Dcpp_file.cc68 new google::protobuf::scoped_ptr<ServiceGenerator>[file->service_count()]), in FileGenerator()
84 new ServiceGenerator(file->service(i), options)); in FileGenerator()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.h58 class ServiceGenerator {
60 explicit ServiceGenerator(const ServiceDescriptor* descriptor);
61 virtual ~ServiceGenerator();
72 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator);
75 class ImmutableServiceGenerator : public ServiceGenerator {
Djava_generator_factory.h47 class ServiceGenerator; // service.h variable
68 virtual ServiceGenerator* NewServiceGenerator(
87 virtual ServiceGenerator* NewServiceGenerator(
Djava_service.cc49 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor) in ServiceGenerator() function in google::protobuf::compiler::java::ServiceGenerator
52 ServiceGenerator::~ServiceGenerator() {} in ~ServiceGenerator()
57 : ServiceGenerator(descriptor), context_(context), in ImmutableServiceGenerator()
Djava_file.cc302 google::protobuf::scoped_ptr<ServiceGenerator> generator( in Generate()
596 google::protobuf::scoped_ptr<ServiceGenerator> generator( in GenerateSiblings()
598 GenerateSibling<ServiceGenerator>(package_dir, java_package_, in GenerateSiblings()
602 &ServiceGenerator::Generate); in GenerateSiblings()
Djava_generator_factory.cc78 ServiceGenerator* ImmutableGeneratorFactory::NewServiceGenerator( in NewServiceGenerator()