Lines Matching refs:varintList
54 private List<ulong> varintList;
78 && Lists.Equals(varintList, otherField.varintList)
91 hash = hash * 47 + Lists.GetHashCode(varintList);
107 if (varintList != null)
109 foreach (ulong value in varintList)
157 if (varintList != null)
159 result += CodedOutputStream.ComputeTagSize(fieldNumber) * varintList.Count;
160 foreach (ulong value in varintList)
201 varintList = AddAll(varintList, other.varintList);
238 varintList = Add(varintList, value);