Searched refs:method_proto (Results 1 – 2 of 2) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/ |
D | descriptor_pool.py | 707 methods = [self._MakeMethodDescriptor(method_proto, service_name, package, 709 for index, method_proto in enumerate(service_proto.method)] 718 def _MakeMethodDescriptor(self, method_proto, service_name, package, scope, argument 732 full_name = '.'.join((service_name, method_proto.name)) 734 package, method_proto.input_type, scope) 736 package, method_proto.output_type, scope) 737 return descriptor.MethodDescriptor(name=method_proto.name, 743 options=method_proto.options)
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | descriptor_test.py | 83 method_proto = service_proto.method.add( 97 self.my_method = self.my_service.methods_by_name[method_proto.name]
|