Lines Matching refs:currentValues

30                 List<TValue> currentValues;  in Add()
31 ObtainKeysAndValues(out currentKeys, out currentValues); in Add()
54 List<TValue> currentValues; in Remove()
55 ObtainKeysAndValues(out currentKeys, out currentValues); in Remove()
72 List<TValue> currentValues; in TryGetValue()
73 ObtainKeysAndValues(out currentKeys, out currentValues); in TryGetValue()
80 value = currentValues[index]; in TryGetValue()
101 List<TValue> currentValues;
102 ObtainKeysAndValues(out currentKeys, out currentValues);
119 List<TValue> currentValues;
120 ObtainKeysAndValues(out currentKeys, out currentValues);
130 List<TValue> currentValues;
131 ObtainKeysAndValues(out currentKeys, out currentValues);
132 return currentValues;
155 List<TValue> currentValues; in Contains()
156 ObtainKeysAndValues(out currentKeys, out currentValues); in Contains()
162 return currentValues[index].Equals(item.Value); in Contains()
181 List<TValue> currentValues;
182 ObtainKeysAndValues(out currentKeys, out currentValues);
199 List<TValue> currentValues; in GetEnumerator()
200 ObtainKeysAndValues(out currentKeys, out currentValues); in GetEnumerator()
203 yield return new KeyValuePair<TKey, TValue>(currentKeys[i], currentValues[i]); in GetEnumerator()
218 List<TValue> currentValues; in GetOrCreateValue()
219 ObtainKeysAndValues(out currentKeys, out currentValues); in GetOrCreateValue()
226 return currentValues[index]; in GetOrCreateValue()
230 private void ObtainKeysAndValues(out List<TKey> currentKeys, out List<TValue> currentValues) in ObtainKeysAndValues() argument
235 currentValues = new List<TValue>(); in ObtainKeysAndValues()
249 currentValues.Add((TValue)value); in ObtainKeysAndValues()