Lines Matching defs:other
97 public FooOptions(FooOptions other) : this() {
98 _hasBits0 = other._hasBits0;
99 intOpt_ = other.intOpt_;
100 foo_ = other.foo_;
101 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
102 _extensions = pb::ExtensionSet.Clone(other._extensions);
165 public override bool Equals(object other) {
166 return Equals(other as FooOptions);
170 public bool Equals(FooOptions other) {
171 if (ReferenceEquals(other, null)) {
174 if (ReferenceEquals(other, this)) {
177 if (IntOpt != other.IntOpt) return false;
178 if (Foo != other.Foo) return false;
179 if (!Equals(_extensions, other._extensions)) {
182 return Equals(_unknownFields, other._unknownFields);
265 public void MergeFrom(FooOptions other) {
266 if (other == null) {
269 if (other.HasIntOpt) {
270 IntOpt = other.IntOpt;
272 if (other.HasFoo) {
273 Foo = other.Foo;
275 pb::ExtensionSet.MergeFrom(ref _extensions, other._extensions);
276 _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);