Implemented interface member:
14 references to Values
Microsoft.CodeAnalysis.Workspaces (9)
FindSymbols\SymbolTree\SymbolTreeInfo_Source.cs (1)
94
var textChecksumsTasks = projectState.DocumentStates.States.
Values
.OrderBy(state => state.FilePath, StringComparer.Ordinal).Select(async state =>
Workspace\Solution\SolutionCompilationState.CompilationTracker.CompilationTrackerState.cs (2)
103
foreach (var generatedDocument in generatorInfo.Documents.States.
Values
)
203
foreach (var generatedDocument in generatorInfo.Documents.States.
Values
)
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
822
var syntaxTrees = generatorInfo.Documents.States.
Values
.Select(state => state.GetSyntaxTree(cancellationToken));
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker_Generators.cs (3)
41
var generatedSyntaxTrees = await generatorInfo.Documents.States.
Values
.SelectAsArrayAsync(
223
await newGeneratedDocuments.States.
Values
.SelectAsArrayAsync(
365
await newGeneratedDocuments.States.
Values
.SelectAsArrayAsync(
Workspace\Solution\TextDocumentStates.cs (2)
275
=> !States.
Values
.SequenceEqual(oldStates.States.
Values
);
RunTests (5)
AssemblyScheduler.cs (4)
74
ConsoleUtil.WriteLine($"Found {orderedTypeInfos.
Values
.SelectMany(t => t).SelectMany(t => t.Tests).Count()} tests to run in {orderedTypeInfos.Keys.Count()} assemblies");
175
var allTests = assemblyTypes.
Values
.SelectMany(v => v).SelectMany(v => v.Tests).Select(t => t.FullyQualifiedName).ToList();
177
var totalExpectedRunTime = TimeSpan.FromMilliseconds(updated.
Values
.SelectMany(types => types).SelectMany(type => type.Tests).Sum(test => test.ExecutionTime.TotalMilliseconds));
277
var totalExecutionTime = TimeSpan.FromMilliseconds(workItem.Filters.
Values
.SelectMany(f => f).Sum(f => f.ExecutionTime.TotalMilliseconds));
ProcessTestExecutor.cs (1)
60
var filters = workItem.Filters.
Values
.SelectMany(filter => filter).Where(filter => !string.IsNullOrEmpty(filter.FullyQualifiedName)).ToImmutableArray();