Home | History | Annotate | Download | only in compiler

Lines Matching refs:Descriptor

26 using grpc::protobuf::Descriptor;
92 * as a map of fully qualified message type name to message descriptor */
93 map<grpc::string, const Descriptor*> GetAllMessages(
95 map<grpc::string, const Descriptor*> message_types;
102 const Descriptor* input_type = method->input_type();
103 const Descriptor* output_type = method->output_type();
115 grpc::string NodeObjectPath(const Descriptor* descriptor) {
116 grpc::string module_alias = ModuleAlias(descriptor->file()->name());
117 grpc::string name = descriptor->full_name();
118 grpc_generator::StripPrefix(&name, descriptor->file()->package() + ".");
123 void PrintMessageTransformer(const Descriptor* descriptor, Printer* out,
126 grpc::string full_name = descriptor->full_name();
129 template_vars["node_name"] = NodeObjectPath(descriptor);
160 const Descriptor* input_type = method->input_type();
161 const Descriptor* output_type = method->output_type();
186 // Prints out the service descriptor object
231 map<grpc::string, const Descriptor*> messages = GetAllMessages(file);
232 for (std::map<grpc::string, const Descriptor*>::iterator it =