12 writes to Right
Roslyn.Diagnostics.Analyzers (12)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (12)
94
currentNode.
Right
= Remove(currentNode.Right, hashCode);
128
currentNode.
Right
= Remove(currentNode.Right, temp.HashCode);
413
previousNode.
Right
= currentNode;
479
unbalancedParent.
Right
= rotated;
487
unbalanced.
Right
= right.Left;
500
left.
Right
= unbalanced;
514
rightLeft.
Right
= right;
515
unbalanced.
Right
= rightLeft.Left;
541
left.
Right
= leftRight.Left;
544
leftRight.
Right
= unbalanced;
597
newHead.
Right
= node.Right;
611
parent.
Right
= newHead;
31 references to Right
Roslyn.Diagnostics.Analyzers (31)
src\RoslynAnalyzers\Utilities\Compiler\SmallDictionary.cs (31)
94
currentNode.Right = Remove(currentNode.
Right
, hashCode);
99
if ((currentNode.Left == null) || (currentNode.
Right
== null))
103
temp = currentNode.
Right
;
120
AvlNode temp = MinValueNode(currentNode.
Right
);
128
currentNode.Right = Remove(currentNode.
Right
, temp.HashCode);
135
currentNode.Balance = (sbyte)(Height(currentNode.Left) - Height(currentNode.
Right
));
142
rotated = currentNode.
Right
!.Balance <= 0 ?
176
int b = Height(node.
Right
);
300
int b = AssertBalanced(V.
Right
);
326
b = b.
Right
;
409
if (currentNode.
Right
== null)
418
currentNode = currentNode.
Right
;
438
n = n.
Right
!;
453
rotated = unbalanced.
Right
!.Balance < 0 ?
485
RoslynDebug.Assert(unbalanced.
Right
is object);
486
var right = unbalanced.
Right
;
499
unbalanced.Left = left.
Right
;
509
RoslynDebug.Assert(unbalanced.
Right
is object);
510
RoslynDebug.Assert(unbalanced.
Right
.Left is object);
511
var right = unbalanced.
Right
;
513
right.Left = rightLeft.
Right
;
538
RoslynDebug.Assert(unbalanced.Left.
Right
!= null);
540
var leftRight = left.
Right
;
543
unbalanced.Left = leftRight.
Right
;
597
newHead.Right = node.
Right
;
640
if (root.Left == root.
Right
)
673
PushIfNotNull(_stack, curr.
Right
);
759
if (root.Left == root.
Right
)
791
PushIfNotNull(_stack, curr.
Right
);
865
if (root.Left == root.
Right
)
897
PushIfNotNull(_stack, curr.
Right
);