Home
last modified time | relevance | path

Searched refs:OneofMerging (Results 1 – 3 of 3) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf.Test/
DIssuesTest.cs36 using static UnitTest.Issues.TestProtos.OneofMerging.Types;
83 public void OneofMerging() in OneofMerging() method in Google.Protobuf.IssuesTest
85 var message1 = new OneofMerging { Nested = new Nested { X = 10 } }; in OneofMerging()
86 var message2 = new OneofMerging { Nested = new Nested { Y = 20 } }; in OneofMerging()
87 var expected = new OneofMerging { Nested = new Nested { X = 10, Y = 20 } }; in OneofMerging()
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DUnittestIssues.cs66OneofMerging), global::UnitTest.Issues.TestProtos.OneofMerging.Parser, new[]{ "Text", "Nested" }, … in UnittestIssuesReflection()
1875 public sealed partial class OneofMerging : pb::IMessage<OneofMerging> { class
1876 … static readonly pb::MessageParser<OneofMerging> _parser = new pb::MessageParser<OneofMerging>(() …
1879 public static pb::MessageParser<OneofMerging> Parser { get { return _parser; } }
1892 public OneofMerging() { in OneofMerging() method in UnitTest.Issues.TestProtos.OneofMerging
1899 public OneofMerging(OneofMerging other) : this() { in OneofMerging() method in UnitTest.Issues.TestProtos.OneofMerging
1913 public OneofMerging Clone() { in Clone()
1914 return new OneofMerging(this); in Clone()
1931 public global::UnitTest.Issues.TestProtos.OneofMerging.Types.Nested Nested {
1932 …eCase_ == ValueOneofCase.Nested ? (global::UnitTest.Issues.TestProtos.OneofMerging.Types.Nested) v…
[all …]
/external/protobuf/csharp/protos/
Dunittest_issues.proto130 message OneofMerging { message