7 overrides of RightChildNode
PresentationFramework (7)
src\Framework\System\Windows\Documents\TextTreeFixupNode.cs (1)
201
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeObjectNode.cs (1)
166
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeRootNode.cs (1)
181
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeRootTextBlock.cs (1)
139
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeTextBlock.cs (1)
360
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeTextElementNode.cs (1)
172
internal override SplayTreeNode
RightChildNode
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (1)
353
internal override SplayTreeNode
RightChildNode
10 writes to RightChildNode
PresentationFramework (10)
src\Framework\System\Windows\Documents\SplayTreeNode.cs (8)
471
this.
RightChildNode
= null;
479
root.
RightChildNode
= rightSubTree;
523
maxNode.
RightChildNode
= rightSubTree;
556
this.
RightChildNode
= null;
848
this.
RightChildNode
= rightChildNode.LeftChildNode;
876
parentNode.
RightChildNode
= rightChildNode;
941
parentNode.
RightChildNode
= leftChildNode;
945
leftChildNode.
RightChildNode
= this;
src\Framework\System\Windows\Documents\TextContainer.cs (2)
3082
previousNode.
RightChildNode
= minChildNode;
3168
previousClone.
RightChildNode
= clone;
20 references to RightChildNode
PresentationFramework (20)
src\Framework\System\Windows\Documents\SplayTreeNode.cs (18)
61
node = node.
RightChildNode
;
117
node = node.
RightChildNode
;
192
walkerNode = previousNode.
RightChildNode
;
238
nextNode = this.
RightChildNode
;
387
Invariant.Assert(this.
RightChildNode
== null);
407
Invariant.Assert(this.
RightChildNode
== null, "Can't insert node with right children!");
448
rightSubTree = this.
RightChildNode
;
519
Invariant.Assert(maxNode.
RightChildNode
== null);
552
rightSubTree = this.
RightChildNode
;
594
rightChildNode = node.
RightChildNode
;
723
parentNode.
RightChildNode
== this ||
798
Invariant.Assert(parentNode.
RightChildNode
== this, "Node has no relation to parent!");
845
Invariant.Assert(this.
RightChildNode
!= null, "Can't rotate left with null right child!");
847
rightChildNode = this.
RightChildNode
;
884
rightChildNodeChild = this.
RightChildNode
;
913
this.LeftChildNode = leftChildNode.
RightChildNode
;
914
if (leftChildNode.
RightChildNode
!= null)
916
leftChildNode.
RightChildNode
.ParentNode = this;
src\Framework\System\Windows\Documents\TextContainer.cs (2)
2745
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3077
Invariant.Assert(previousNode.
RightChildNode
== null);