Lines Matching refs:RepeatedField
51 public sealed class RepeatedField<T> : IList<T>, IList, IDeepCloneable<RepeatedField<T>>, IEquatable<RepeatedField<T>>
74 public RepeatedField<T> Clone()
76 RepeatedField<T> clone = new RepeatedField<T>();
287 /// Gets and sets the capacity of the RepeatedField's internal array. WHen set, the internal array is reallocated to the given capacity.
406 // Optimization 1: If the collection we're adding is already a RepeatedField<T>,
408 var otherRepeatedField = values as RepeatedField<T>;
492 return Equals(obj as RepeatedField<T>);
527 public bool Equals(RepeatedField<T> other)