11 references to AddEntry
Microsoft.CodeAnalysis (7)
SourceGeneration\Nodes\BatchNode.cs (2)
133newTable.AddEntry(sourceValues, EntryState.Added, stopwatch.Elapsed, sourceInputs, EntryState.Added); 139newTable.AddEntry(sourceValues, EntryState.Added, stopwatch.Elapsed, sourceInputs, EntryState.Added);
SourceGeneration\Nodes\CombineNode.cs (1)
75builder.AddEntry(entry, state, stopwatch.Elapsed, stepInputs, state);
SourceGeneration\Nodes\InputNode.cs (1)
94builder.AddEntry(newItem, EntryState.Added, elapsedTime, noInputStepsStepInfo, EntryState.Added);
SourceGeneration\Nodes\PredicateSyntaxStrategy.cs (1)
103_transformTable.AddEntry(transformed, EntryState.Added, stopwatch.Elapsed, noInputStepsStepInfo, EntryState.Added);
SourceGeneration\Nodes\SourceOutputNode.cs (1)
75nodeTable.AddEntry(sourcesAndDiagnostics, EntryState.Added, stopwatch.Elapsed, inputs, EntryState.Added);
SourceGeneration\Nodes\SyntaxReceiverStrategy.cs (1)
63_nodeStateTable.AddEntry(_receiver, EntryState.Modified, lastElapsedTime, TrackIncrementalSteps ? System.Collections.Immutable.ImmutableArray<(IncrementalGeneratorRunStep, int)>.Empty : default, EntryState.Modified);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (3)
SourceGeneration\StateTableTests.cs (3)
65builder.AddEntry(o, EntryState.Added, TimeSpan.Zero, default, EntryState.Added); 66builder.AddEntry(null, EntryState.Added, TimeSpan.Zero, default, EntryState.Added); 67builder.AddEntry(o, EntryState.Added, TimeSpan.Zero, default, EntryState.Added);
Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler (1)
HostOutputNode.cs (1)
58nodeTable.AddEntry(output.ToImmutableAndFree(), EntryState.Added, stopwatch.Elapsed, inputs, EntryState.Added);