11 references to _lruList
Microsoft.CodeAnalysis.EditorFeatures (11)
Classification\Syntactic\SyntacticClassificationTaggerProvider.ClassifiedLineCache.cs (11)
80/// Mapping from span to the corresponding linked list node in <see cref="_lruList"/>. Allows us to quickly 99foreach (var spanAndClassifiedSpans in _lruList) 102_lruList.Clear(); 125_lruList.Remove(node); 126_lruList.AddLast(node); 156_lruList.AddLast(node); 159Contract.ThrowIfTrue(_lruList.Count > CacheSize); 160Contract.ThrowIfTrue(_lruList.Count != _spanToLruNode.Count); 165if (_lruList.Count < CacheSize) 175var firstNode = _lruList.First; 177_lruList.RemoveFirst();