Home
last modified time | relevance | path

Searched refs:ServiceGenerator (Results 1 – 7 of 7) 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.h57 class ServiceGenerator; // service.h variable
82 scoped_array<scoped_ptr<ServiceGenerator> > service_generators_;
Dcpp_file.cc61 new scoped_ptr<ServiceGenerator>[file->service_count()]), in FileGenerator()
78 new ServiceGenerator(file->service(i), dllexport_decl)); in FileGenerator()
/external/protobuf/src/google/protobuf/compiler/java/
Djava_service.cc46 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor) in ServiceGenerator() function in google::protobuf::compiler::java::ServiceGenerator
49 ServiceGenerator::~ServiceGenerator() {} in ~ServiceGenerator()
51 void ServiceGenerator::Generate(io::Printer* printer) { in Generate()
93 void ServiceGenerator::GenerateGetDescriptorForType(io::Printer* printer) { in GenerateGetDescriptorForType()
101 void ServiceGenerator::GenerateInterface(io::Printer* printer) { in GenerateInterface()
109 void ServiceGenerator::GenerateNewReflectiveServiceMethod( in GenerateNewReflectiveServiceMethod()
136 void ServiceGenerator::GenerateNewReflectiveBlockingServiceMethod( in GenerateNewReflectiveBlockingServiceMethod()
157 void ServiceGenerator::GenerateAbstractMethods(io::Printer* printer) { in GenerateAbstractMethods()
165 void ServiceGenerator::GenerateCallMethod(io::Printer* printer) { in GenerateCallMethod()
211 void ServiceGenerator::GenerateCallBlockingMethod(io::Printer* printer) { in GenerateCallBlockingMethod()
[all …]
Djava_service.h52 class ServiceGenerator {
54 explicit ServiceGenerator(const ServiceDescriptor* descriptor);
55 ~ServiceGenerator();
105 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ServiceGenerator);
Djava_file.cc186 ServiceGenerator(file_->service(i)).Generate(printer); in Generate()
413 GenerateSibling<ServiceGenerator>(package_dir, java_package_, in GenerateSiblings()