Home
last modified time | relevance | path

Searched defs:IMessage (Results 1 – 11 of 11) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DFieldMaskPartial.cs118 public static FieldMask FromString<T>(string value) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
127 … public static FieldMask FromStringEnumerable<T>(IEnumerable<string> paths) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
154 public static FieldMask FromFieldNumbers<T>(params int[] fieldNumbers) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
163 … public static FieldMask FromFieldNumbers<T>(IEnumerable<int> fieldNumbers) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
211 public static bool IsValid<T>(FieldMask fieldMask) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
238 public static bool IsValid<T>(string path) where T : IMessage property in Google.Protobuf.WellKnownTypes.FieldMask
DAnyPartial.cs88 public T Unpack<T>() where T : IMessage, new() field in Google.Protobuf.WellKnownTypes.Any
108 public bool TryUnpack<T>(out T result) where T : IMessage, new() field in Google.Protobuf.WellKnownTypes.Any
/external/protobuf/csharp/src/Google.Protobuf/
DIMessage.cs42 public interface IMessage interface
78 public interface IMessage<T> : IMessage, IEquatable<T>, IDeepCloneable<T> where T : IMessage<T> interface
DJsonParser.cs381 public T Parse<T>(string json) where T : IMessage, new() field in Google.Protobuf.JsonParser
394 public T Parse<T>(TextReader jsonReader) where T : IMessage, new() field in Google.Protobuf.JsonParser
DFieldCodec.cs403 … static FieldCodec<T> ForMessage<T>(uint tag, MessageParser<T> parser) where T : class, IMessage<T> class in Google.Protobuf.FieldCodec
440 …ec<T> ForGroup<T>(uint startTag, uint endTag, MessageParser<T> parser) where T : class, IMessage<T> class
/external/testng/src/main/java/org/testng/remote/strprotocol/
DIMessage.java11 public interface IMessage extends Serializable { interface
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedInputStreamExtensions.cs46 where T : IMessage<T> property in Google.Protobuf.CodedInputStreamExtensions
DJsonParserTest.cs233 private static void AssertRoundtrip<T>(T message) where T : IMessage<T>, new() field in Google.Protobuf.JsonParserTest
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedInputStreamExtensions.cs46 where T : IMessage<T> property in Google.Protobuf.CodedInputStreamExtensions
DJsonParserTest.cs233 private static void AssertRoundtrip<T>(T message) where T : IMessage<T>, new() field in Google.Protobuf.JsonParserTest
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DCustomOptions.cs206 public bool TryGetMessage<T>(int field, out T value) where T : class, IMessage, new() field in Google.Protobuf.Reflection.CustomOptions