Implemented interface member:
12 references to Values
Microsoft.CodeAnalysis.Workspaces (9)
FindSymbols\SymbolTree\SymbolTreeInfo_Source.cs (1)
94var textChecksumsTasks = projectState.DocumentStates.States.Values.OrderBy(state => state.FilePath, StringComparer.Ordinal).Select(async state =>
Workspace\Solution\SolutionCompilationState.CompilationTracker.CompilationTrackerState.cs (2)
103foreach (var generatedDocument in generatorInfo.Documents.States.Values) 203foreach (var generatedDocument in generatorInfo.Documents.States.Values)
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
823var syntaxTrees = generatorInfo.Documents.States.Values.Select(state => state.GetSyntaxTree(cancellationToken));
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker_Generators.cs (3)
41var generatedSyntaxTrees = await generatorInfo.Documents.States.Values.SelectAsArrayAsync( 223await newGeneratedDocuments.States.Values.SelectAsArrayAsync( 365await newGeneratedDocuments.States.Values.SelectAsArrayAsync(
Workspace\Solution\TextDocumentStates.cs (2)
275=> !States.Values.SequenceEqual(oldStates.States.Values);
RunTests (3)
AssemblyScheduler.cs (2)
151var allTests = assemblyTypes.Values.SelectMany(v => v).SelectMany(v => v.Tests).Select(t => t.FullyQualifiedName).ToList(); 153var totalExpectedRunTime = TimeSpan.FromMilliseconds(updated.Values.SelectMany(types => types).SelectMany(type => type.Tests).Sum(test => test.ExecutionTime.TotalMilliseconds));
ProcessTestExecutor.cs (1)
60var filters = workItem.Filters.Values.SelectMany(filter => filter).Where(filter => !string.IsNullOrEmpty(filter.FullyQualifiedName)).ToImmutableArray();