7 overrides of RightChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
194
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
159
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
173
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
137
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
354
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
167
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
350
internal override SplayTreeNode
RightChildNode
10 writes to RightChildNode
PresentationFramework (10)
System\Windows\Documents\SplayTreeNode.cs (8)
470
this.
RightChildNode
= null;
478
root.
RightChildNode
= rightSubTree;
522
maxNode.
RightChildNode
= rightSubTree;
555
this.
RightChildNode
= null;
847
this.
RightChildNode
= rightChildNode.LeftChildNode;
875
parentNode.
RightChildNode
= rightChildNode;
940
parentNode.
RightChildNode
= leftChildNode;
944
leftChildNode.
RightChildNode
= this;
System\Windows\Documents\TextContainer.cs (2)
3061
previousNode.
RightChildNode
= minChildNode;
3147
previousClone.
RightChildNode
= clone;
22 references to RightChildNode
PresentationFramework (22)
System\Windows\Documents\SplayTreeNode.cs (18)
60
node = node.
RightChildNode
;
116
node = node.
RightChildNode
;
191
walkerNode = previousNode.
RightChildNode
;
237
nextNode = this.
RightChildNode
;
386
Invariant.Assert(this.
RightChildNode
== null);
406
Invariant.Assert(this.
RightChildNode
== null, "Can't insert node with right children!");
447
rightSubTree = this.
RightChildNode
;
518
Invariant.Assert(maxNode.
RightChildNode
== null);
551
rightSubTree = this.
RightChildNode
;
593
rightChildNode = node.
RightChildNode
;
722
parentNode.
RightChildNode
== this ||
797
Invariant.Assert(parentNode.
RightChildNode
== this, "Node has no relation to parent!");
844
Invariant.Assert(this.
RightChildNode
!= null, "Can't rotate left with null right child!");
846
rightChildNode = this.
RightChildNode
;
883
rightChildNodeChild = this.
RightChildNode
;
912
this.LeftChildNode = leftChildNode.
RightChildNode
;
913
if (leftChildNode.
RightChildNode
!= null)
915
leftChildNode.
RightChildNode
.ParentNode = this;
System\Windows\Documents\TextContainer.cs (2)
2725
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3056
Invariant.Assert(previousNode.
RightChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
143
if (node.
RightChildNode
!= null)
146
DumpNodeRecursive(node.
RightChildNode
, depth + 1);