7 overrides of RightChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
195
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
160
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
175
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
139
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
355
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
166
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
347
internal override SplayTreeNode
RightChildNode
10 writes to RightChildNode
PresentationFramework (10)
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;
System\Windows\Documents\TextContainer.cs (2)
3066
previousNode.
RightChildNode
= minChildNode;
3152
previousClone.
RightChildNode
= clone;
22 references to RightChildNode
PresentationFramework (22)
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;
System\Windows\Documents\TextContainer.cs (2)
2730
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3061
Invariant.Assert(previousNode.
RightChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
146
if (node.
RightChildNode
!= null)
149
DumpNodeRecursive(node.
RightChildNode
, depth + 1);