7 references to _map
Microsoft.CodeAnalysis (7)
Collections\IdentifierCollection.Collection.cs (2)
45_count = this.IdentifierCollection._map.Values.Sum(o => o is string ? 1 : ((ISet<string>)o).Count); 56foreach (var obj in this.IdentifierCollection._map.Values)
Collections\IdentifierCollection.cs (5)
52if (!_map.TryGetValue(identifier, out value)) 73_map[identifier] = new HashSet<string> { identifier, strValue }; 90_map.Add(identifier, identifier); 112return _map.ContainsKey(identifier); 118if (_map.TryGetValue(identifier, out spellings))