Lines Matching defs:other
14 // in the documentation and/or other materials provided with the
114 public override bool Equals(object other)
116 if (ReferenceEquals(this, other))
120 UnknownFieldSet otherSet = other as UnknownFieldSet;
319 /// Merges the fields from <paramref name="other"/> into this set.
320 /// If a field number exists in both sets, the values in <paramref name="other"/>
323 private UnknownFieldSet MergeFrom(UnknownFieldSet other)
325 if (other != null)
327 foreach (KeyValuePair<int, UnknownField> entry in other.fields)
337 /// needed and merges the fields from <paramref name="other"/> into the first set.
338 /// If a field number exists in both sets, the values in <paramref name="other"/>
342 UnknownFieldSet other)
344 if (other == null)
352 unknownFields.MergeFrom(other);
379 /// Clone an unknown field set from <paramref name="other"/>.
381 public static UnknownFieldSet Clone(UnknownFieldSet other)
383 if (other == null)
388 unknownFields.MergeFrom(other);