Lines Matching defs:other
14 // in the documentation and/or other materials provided with the
70 public override bool Equals(object other)
72 if (ReferenceEquals(this, other))
76 UnknownField otherField = other as UnknownField;
195 /// Merge the values in <paramref name="other" /> into this field. For each list
196 /// of values, <paramref name="other"/>'s values are append to the ones in this
199 internal UnknownField MergeFrom(UnknownField other)
201 varintList = AddAll(varintList, other.varintList);
202 fixed32List = AddAll(fixed32List, other.fixed32List);
203 fixed64List = AddAll(fixed64List, other.fixed64List);
204 lengthDelimitedList = AddAll(lengthDelimitedList, other.lengthDelimitedList);
205 groupList = AddAll(groupList, other.groupList);