Home
last modified time | relevance | path

Searched refs:MethodDescriptorProto (Results 1 – 18 of 18) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DMethodDescriptor.cs40 private readonly MethodDescriptorProto proto;
70 internal MethodDescriptor(MethodDescriptorProto proto, FileDescriptor file, in MethodDescriptor()
79 internal MethodDescriptorProto Proto { get { return proto; } }
DDescriptor.cs153 …(global::Google.Protobuf.Reflection.MethodDescriptorProto), global::Google.Protobuf.Reflection.Met… in DescriptorReflection()
2160 …private static readonly pb::FieldCodec<global::Google.Protobuf.Reflection.MethodDescriptorProto> _…
2161 … = pb::FieldCodec.ForMessage(18, global::Google.Protobuf.Reflection.MethodDescriptorProto.Parser);
2162 …Protobuf.Reflection.MethodDescriptorProto> method_ = new pbc::RepeatedField<global::Google.Protobu…
2163 public pbc::RepeatedField<global::Google.Protobuf.Reflection.MethodDescriptorProto> Method {
2278 internal sealed partial class MethodDescriptorProto : pb::IMessage<MethodDescriptorProto> { class
2279 …nly pb::MessageParser<MethodDescriptorProto> _parser = new pb::MessageParser<MethodDescriptorProto
2280 public static pb::MessageParser<MethodDescriptorProto> Parser { get { return _parser; } }
2290 public MethodDescriptorProto() { in MethodDescriptorProto() method in Google.Protobuf.Reflection.MethodDescriptorProto
2296 public MethodDescriptorProto(MethodDescriptorProto other) : this() { in MethodDescriptorProto() method in Google.Protobuf.Reflection.MethodDescriptorProto
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor.pb.h56 class MethodDescriptorProto; variable
1634 const ::google::protobuf::MethodDescriptorProto& method(int index) const;
1635 ::google::protobuf::MethodDescriptorProto* mutable_method(int index);
1636 ::google::protobuf::MethodDescriptorProto* add_method();
1637 ::google::protobuf::RepeatedPtrField< ::google::protobuf::MethodDescriptorProto >*
1639 const ::google::protobuf::RepeatedPtrField< ::google::protobuf::MethodDescriptorProto >&
1662 ::google::protobuf::RepeatedPtrField< ::google::protobuf::MethodDescriptorProto > method_;
1673 class LIBPROTOBUF_EXPORT MethodDescriptorProto : public ::google::protobuf::Message {
1675 MethodDescriptorProto();
1676 virtual ~MethodDescriptorProto();
[all …]
Ddescriptor.pb.cc303 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, name_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
304 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, input_type_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
305 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, output_type_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
306 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, options_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
307 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, client_streaming_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
308 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, server_streaming_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
313 MethodDescriptorProto::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
315 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, _has_bits_[0]), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
318 sizeof(MethodDescriptorProto), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
319 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(MethodDescriptorProto, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fdescriptor_2eproto()
[all …]
Ddescriptor.h94 class MethodDescriptorProto; variable
1103 void CopyTo(MethodDescriptorProto* proto) const;
Ddescriptor.cc1934 void MethodDescriptor::CopyTo(MethodDescriptorProto* proto) const { in CopyTo()
2986 void BuildMethod(const MethodDescriptorProto& proto,
3009 const MethodDescriptorProto& proto);
3159 const MethodDescriptorProto& proto);
4663 void DescriptorBuilder::BuildMethod(const MethodDescriptorProto& proto, in BuildMethod()
5043 MethodDescriptor* method, const MethodDescriptorProto& proto) { in CrossLinkMethod()
5375 const MethodDescriptorProto& /* proto */) { in ValidateMethodOptions() argument
Ddescriptor.proto227 repeated MethodDescriptorProto method = 2;
233 message MethodDescriptorProto { message
Ddescriptor_unittest.cc165 MethodDescriptorProto* AddMethod(ServiceDescriptorProto* service, in AddMethod()
169 MethodDescriptorProto* result = service->add_method(); in AddMethod()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc1845 bool Parser::ParseServiceMethod(MethodDescriptorProto* method, in ParseServiceMethod()
1852 MethodDescriptorProto::kNameFieldNumber); in ParseServiceMethod()
1863 method_location, MethodDescriptorProto::kClientStreamingFieldNumber); in ParseServiceMethod()
1871 MethodDescriptorProto::kInputTypeFieldNumber); in ParseServiceMethod()
1884 method_location, MethodDescriptorProto::kServerStreamingFieldNumber); in ParseServiceMethod()
1892 MethodDescriptorProto::kOutputTypeFieldNumber); in ParseServiceMethod()
1902 MethodDescriptorProto::kOptionsFieldNumber, in ParseServiceMethod()
Dparser.h406 bool ParseServiceMethod(MethodDescriptorProto* method,
Dparser_unittest.cc2678 const MethodDescriptorProto& bar = file_.service(0).method(0); in TEST_F()
2679 const MethodDescriptorProto& baz = file_.service(0).method(1); in TEST_F()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDescriptors.java1924 public MethodDescriptorProto toProto() { in toProto()
1964 private MethodDescriptorProto proto;
1973 private MethodDescriptor(final MethodDescriptorProto proto, in MethodDescriptor()
2009 private void setProto(final MethodDescriptorProto proto) { in setProto()
/external/nanopb-c/generator/proto/google/protobuf/
Ddescriptor.proto190 repeated MethodDescriptorProto method = 2;
196 message MethodDescriptorProto { message
/external/nanopb-c/generator/google/protobuf/
Ddescriptor_pb2.py1273 class MethodDescriptorProto(_message.Message): class
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.h7199 class MethodDescriptorProto : public ::upb::reffed_ptr<const ::upb::MessageDef> {
7201 MethodDescriptorProto(const ::upb::MessageDef* m, const void *ref_donor = NULL)
7206 static MethodDescriptorProto get() {
7208 return MethodDescriptorProto(m, &m);
/external/google-tv-pairing-protocol/java/jar/
Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/protobuf/php/ext/google/protobuf/
Dupb.h6930 namespace MethodDescriptorProto {
/external/v8/src/inspector/build/closure-compiler/
Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...