2 implementations of GetValue
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
290
public T
GetValue
(ImmutableIntervalTree<T> tree, int node)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\MutableIntervalTree`1.cs (1)
151
public T
GetValue
(MutableIntervalTree<T> tree, Node node)
6 references to GetValue
Microsoft.CodeAnalysis.CodeStyle (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.cs (5)
59
var currentNodeValue = witness.
GetValue
(tree, enumerator.Current);
95
if (intervalTester.Test(witness.
GetValue
(tree, currentNode), start, length, in introspector))
123
if (introspector.GetSpan(witness.
GetValue
(tree, currentNode)).Start <= end)
126
introspector.GetSpan(witness.
GetValue
(tree, witness.GetMaxEndNode(tree, rightNode))).End >= start)
152
introspector.GetSpan(witness.
GetValue
(tree, witness.GetMaxEndNode(tree, left))).End >= start)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\IntervalTreeHelpers.Enumerator.cs (1)
32
public readonly T Current => default(TIntervalTreeWitness).
GetValue
(tree, _nodeEnumerator.Current);