Home
last modified time | relevance | path

Searched defs:TKey (Results 1 – 10 of 10) sorted by relevance

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DDictionaryExtensions.cs55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { in get()
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { in get()
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { in get()
96 … public static void put<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key, TValue value) { in put()
101 public static void put<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key, TValue value) { in put()
111 public static HashSet<TKey> keySet<TKey, TValue>(IDictionary<TKey, TValue> map) { in keySet()
117 public static HashSet<TKey> keySet<TKey, TValue>(Dictionary<TKey, TValue> map) { in keySet()
122 public static HashSet<object> keySet<TKey, TValue>(SortedList<TKey, TValue> map) { in keySet()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DReadOnlyDictionary.cs46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped) in ReadOnlyDictionary()
87 public void Add(KeyValuePair<TKey, TValue> item) in Add()
97 public bool Contains(KeyValuePair<TKey, TValue> item) in Contains()
102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo()
117 public bool Remove(KeyValuePair<TKey, TValue> item) in Remove()
DMapField.cs241 public void Add(IDictionary<TKey, TValue> entries) in Add()
276 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) in Add()
295 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) in Contains()
306 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo()
317 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove()
385 public bool Equals(MapField<TKey, TValue> other) in Equals()
518 private static int CalculateEntrySize(Codec codec, KeyValuePair<TKey, TValue> entry) in CalculateEntrySize()
614 internal DictionaryEnumerator(IEnumerator<KeyValuePair<TKey, TValue>> enumerator) in DictionaryEnumerator()
682 MapField<TKey, TValue> parent, in MapView()
683 Func<KeyValuePair<TKey, TValue>, T> projection, in MapView()
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
DReadOnlyDictionary.cs46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped) in ReadOnlyDictionary()
87 public void Add(KeyValuePair<TKey, TValue> item) in Add()
97 public bool Contains(KeyValuePair<TKey, TValue> item) in Contains()
102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo()
117 public bool Remove(KeyValuePair<TKey, TValue> item) in Remove()
DMapField.cs241 public void Add(IDictionary<TKey, TValue> entries) in Add()
276 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item) in Add()
295 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item) in Contains()
306 …void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayI… in CopyTo()
317 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove()
385 public bool Equals(MapField<TKey, TValue> other) in Equals()
518 private static int CalculateEntrySize(Codec codec, KeyValuePair<TKey, TValue> entry) in CalculateEntrySize()
614 internal DictionaryEnumerator(IEnumerator<KeyValuePair<TKey, TValue>> enumerator) in DictionaryEnumerator()
682 MapField<TKey, TValue> parent, in MapView()
683 Func<KeyValuePair<TKey, TValue>, T> projection, in MapView()
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Collections.pas94 constructor Create(const AHashList: THashList<TKey, TValue>);
104 function GetItem(const Key: TKey): TValue; in GetItem()
109 procedure Remove(const Key: TKey);
114 function ContainsKey(const Key: TKey): Boolean; in ContainsKey()
175 procedure THashList<TKey, TValue>.AddOrSetValue(const Key: TKey;
191 function THashList<TKey, TValue>.ContainsKey(const Key: TKey): Boolean; in THashList()
232 function THashList<TKey, TValue>.GetItem(const Key: TKey): TValue; in GetItem()
237 procedure THashList<TKey, TValue>.Remove(const Key: TKey);
261 function THashList<TKey, TValue>.TryGetValue(const Key: TKey; in THashList()
DAntlr.Runtime.Tools.pas869 function TDictionary<TKey,TValue>.ContainsKey(const Key: TKey): Boolean; in TDictionary()
894 constructor TDictionary<TKey,TValue>.TPairEnumerator.Create(ADictionary: TDictionary<TKey,TValue>);
/external/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitivesMessages.cs141 …uePair<TKey, TValue> ReadMapEntry<TKey, TValue>(ref ParseContext ctx, MapField<TKey, TValue>.Codec… in ReadMapEntry()
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitivesMessages.cs141 …uePair<TKey, TValue> ReadMapEntry<TKey, TValue>(ref ParseContext ctx, MapField<TKey, TValue>.Codec… in ReadMapEntry()
/external/webrtc/pc/
Dsdp_serializer_unittest.cc60 void ExpectEqual(const std::map<TKey, TValue>& expected, in ExpectEqual()