11 references to _lruList
Microsoft.CodeAnalysis.EditorFeatures (11)
Classification\Syntactic\SyntacticClassificationTaggerProvider.ClassifiedLineCache.cs (11)
79/// Mapping from span to the corresponding linked list node in <see cref="_lruList"/>. Allows us to quickly 98foreach (var spanAndClassifiedSpans in _lruList) 101_lruList.Clear(); 124_lruList.Remove(node); 125_lruList.AddLast(node); 155_lruList.AddLast(node); 158Contract.ThrowIfTrue(_lruList.Count > CacheSize); 159Contract.ThrowIfTrue(_lruList.Count != _spanToLruNode.Count); 164if (_lruList.Count < CacheSize) 174var firstNode = _lruList.First; 176_lruList.RemoveFirst();