Home
last modified time | relevance | path

Searched refs:_dictionary (Results 1 – 1 of 1) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DHashList.cs352 private Hashtable _dictionary = new Hashtable(); field in Antlr.Runtime.Collections.HashList
366 _dictionary = new Hashtable(); in HashList()
371 _dictionary = new Hashtable(capacity); in HashList()
381 public bool IsReadOnly { get { return _dictionary.IsReadOnly; } }
390 get { return _dictionary[key]; }
393 bool isNewEntry = !_dictionary.Contains(key);
394 _dictionary[key] = value;
403 _dictionary.Remove(key); in Remove()
410 return _dictionary.Contains(key); in Contains()
415 _dictionary.Clear(); in Clear()
[all …]