45 references to LinkedList
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\MruCache.cs (1)
40_mruList = new LinkedList<TKey>();
Microsoft.Build (10)
BackEnd\Components\RequestBuilder\Lookup.cs (1)
74private LinkedList<Lookup.Scope> _lookupScopes = new LinkedList<Lookup.Scope>();
BackEnd\Components\Scheduler\SchedulingData.cs (1)
44private readonly LinkedList<SchedulableRequest> _unscheduledRequests = new LinkedList<SchedulableRequest>();
Collections\ItemDictionary.cs (3)
332list = new LinkedList<T>(); 372_itemLists.Add(itemType, new LinkedList<T>()); 398list = new LinkedList<T>();
Evaluation\Evaluator.cs (1)
756LinkedList<ProjectTargetElement> activeTargetsByEvaluationOrder = new LinkedList<ProjectTargetElement>();
Evaluation\ProjectRootElementCache.cs (4)
159_strongCache = new LinkedList<ProjectRootElement>(); 441_strongCache = new LinkedList<ProjectRootElement>(); 457_strongCache = new LinkedList<ProjectRootElement>(); 480_strongCache = new LinkedList<ProjectRootElement>();
Microsoft.CodeAnalysis (1)
InternalUtilities\ConcurrentLruCache.cs (1)
41_nodeList = new LinkedList<K>();
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\SyntaxNodeExtensions.cs (1)
109var nodes = new LinkedList<SyntaxNode>();
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\NameSyntaxIterator.cs (1)
22var nodes = new LinkedList<NameSyntax>();
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (3)
ObjectFormatterTests.cs (3)
339var list = new LinkedList<object>(); 344var newList = new LinkedList<object>(); 620var obj = new LinkedList<int>();
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Utilities\NameSyntaxIterator.cs (1)
22var nodes = new LinkedList<NameSyntax>();
Microsoft.CodeAnalysis.Features (1)
SymbolSearch\Windows\SymbolSearchUpdateEngine.Update.cs (1)
48private static readonly LinkedList<string> s_logs = new();
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Host\RemoteSolutionCache.cs (1)
59private readonly LinkedList<CacheNode> _cacheNodes = new();
Services\DiagnosticAnalyzer\PerformanceQueue.cs (1)
34_snapshots = new LinkedList<Snapshot>();
Services\SemanticClassification\RemoteSemanticClassificationService.Caching.cs (1)
48private readonly LinkedList<(DocumentId id, ClassificationType type, Checksum checksum, ImmutableArray<ClassifiedSpan> classifiedSpans)> _cachedData = new();
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\SyntaxNodeExtensions.cs (1)
109var nodes = new LinkedList<SyntaxNode>();
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Compilers\Core\Portable\InternalUtilities\ConcurrentLruCache.cs (1)
41_nodeList = new LinkedList<K>();
Microsoft.Gen.Logging (1)
Model\LoggingMethodParameterExtensions.cs (1)
15var propertyChain = new LinkedList<LoggingProperty>();
Microsoft.ML.Core (1)
Utilities\LruCache.cs (1)
36_lru = new LinkedList<KeyValuePair<TKey, TValue>>();
Microsoft.ML.Data (1)
Model\Pfa\SavePfaCommand.cs (1)
106transforms = new LinkedList<ITransformCanSavePfa>();
Microsoft.ML.FastTree (2)
Training\Test.cs (2)
294_window = new LinkedList<double>(); 295_toleratedQueue = new LinkedList<ValueIterationPair>();
Microsoft.ML.OnnxConverter (1)
SaveOnnxCommand.cs (1)
145transforms = new LinkedList<ITransformCanSaveOnnx>();
Microsoft.ML.Tokenizers (1)
Utils\LruCache.cs (1)
18private readonly LinkedList<KeyValuePair<string, TValue>> _lruList = new();
Microsoft.VisualBasic.Core (2)
Microsoft\VisualBasic\CompilerServices\CacheDict.vb (1)
20_list = New LinkedList(Of TKey)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1569Private ReadOnly _list As New LinkedList(Of T)
Microsoft.VisualStudio.LanguageServices (3)
MoveStaticMembers\VisualStudioMoveStaticMembersOptionsService.cs (1)
35public readonly LinkedList<INamedTypeSymbol> History = new();
MoveToNamespace\VisualStudioMoveToNamespaceOptionsService.cs (1)
21public readonly LinkedList<string> History = new();
src\Compilers\Core\Portable\InternalUtilities\ConcurrentLruCache.cs (1)
41_nodeList = new LinkedList<K>();
System.Data.Common (2)
System\Data\SortExpressionBuilder.cs (2)
41private readonly LinkedList<Func<T, object>> _selectors = new LinkedList<Func<T, object>>(); 42private readonly LinkedList<Comparison<object>> _comparers = new LinkedList<Comparison<object>>();
System.IO.Packaging (1)
System\IO\Packaging\OrderedDictionary.cs (1)
23_order = new LinkedList<TValue>();
System.Net.Requests (2)
System\Net\TimerThread.cs (2)
86private static readonly LinkedList<WeakReference> s_queues = new LinkedList<WeakReference>(); 87private static readonly LinkedList<WeakReference> s_newQueues = new LinkedList<WeakReference>();
System.Windows.Forms (3)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (1)
225_rowsAccessibleObjects = new();
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (1)
68_cellsAccessibleObjects = new();
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
53_calendarsAccessibleObjects = new();
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\EventHandlerService.cs (1)
16private readonly LinkedList<object> _handlers = new();