/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | MethodDescriptor.cs | 40 private readonly MethodDescriptorProto proto; 70 internal MethodDescriptor(MethodDescriptorProto proto, FileDescriptor file, in MethodDescriptor() 79 internal MethodDescriptorProto Proto { get { return proto; } }
|
D | Descriptor.cs | 153 …(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/ |
D | descriptor.pb.h | 56 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 …]
|
D | descriptor.pb.cc | 303 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 …]
|
D | descriptor.h | 94 class MethodDescriptorProto; variable 1103 void CopyTo(MethodDescriptorProto* proto) const;
|
D | descriptor.cc | 1934 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
|
D | descriptor.proto | 227 repeated MethodDescriptorProto method = 2; 233 message MethodDescriptorProto { message
|
D | descriptor_unittest.cc | 165 MethodDescriptorProto* AddMethod(ServiceDescriptorProto* service, in AddMethod() 169 MethodDescriptorProto* result = service->add_method(); in AddMethod()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | parser.cc | 1845 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()
|
D | parser.h | 406 bool ParseServiceMethod(MethodDescriptorProto* method,
|
D | parser_unittest.cc | 2678 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/ |
D | Descriptors.java | 1924 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/ |
D | descriptor.proto | 190 repeated MethodDescriptorProto method = 2; 196 message MethodDescriptorProto { message
|
/external/nanopb-c/generator/google/protobuf/ |
D | descriptor_pb2.py | 1273 class MethodDescriptorProto(_message.Message): class
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.h | 7199 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/ |
D | protobuf-java-2.2.0-lite.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/protobuf/php/ext/google/protobuf/ |
D | upb.h | 6930 namespace MethodDescriptorProto {
|
/external/v8/src/inspector/build/closure-compiler/ |
D | closure-compiler.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |