8 references to TryUseCachedEntries
Microsoft.CodeAnalysis (8)
SourceGeneration\Nodes\BatchNode.cs (1)
137else if (!sourceTable.IsCached || !tableBuilder.TryUseCachedEntries(stopwatch.Elapsed, sourceInputs))
SourceGeneration\Nodes\CombineNode.cs (1)
97bool usedCachedEntry = builder.TryUseCachedEntries(TimeSpan.Zero, stepInputs);
SourceGeneration\Nodes\HostOutputNode.cs (1)
54else if (entry.State != EntryState.Cached || !nodeTable.TryUseCachedEntries(TimeSpan.Zero, inputs))
SourceGeneration\Nodes\InputNode.cs (1)
77var usedCache = tableBuilder.TryUseCachedEntries(elapsedTime, noInputStepsStepInfo);
SourceGeneration\Nodes\NodeStateTable.cs (2)
193bool usedCachedEntry = builder.TryUseCachedEntries(TimeSpan.Zero, inputs); 313if (!TryUseCachedEntries(elapsedTime, stepInputs))
SourceGeneration\Nodes\SourceOutputNode.cs (1)
62else if (entry.State != EntryState.Cached || !tableBuilder.TryUseCachedEntries(TimeSpan.Zero, inputs))
SourceGeneration\Nodes\TransformNode.cs (1)
76else if (entry.State != EntryState.Cached || !tableBuilder.TryUseCachedEntries(TimeSpan.Zero, inputs))