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)
464
this.
RightChildNode
= null;
472
root.
RightChildNode
= rightSubTree;
516
maxNode.
RightChildNode
= rightSubTree;
549
this.
RightChildNode
= null;
841
this.
RightChildNode
= rightChildNode.LeftChildNode;
869
parentNode.
RightChildNode
= rightChildNode;
934
parentNode.
RightChildNode
= leftChildNode;
938
leftChildNode.
RightChildNode
= this;
System\Windows\Documents\TextContainer.cs (2)
3034
previousNode.
RightChildNode
= minChildNode;
3120
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
;
234
nextNode = this.
RightChildNode
;
380
Invariant.Assert(this.
RightChildNode
== null);
400
Invariant.Assert(this.
RightChildNode
== null, "Can't insert node with right children!");
441
rightSubTree = this.
RightChildNode
;
512
Invariant.Assert(maxNode.
RightChildNode
== null);
545
rightSubTree = this.
RightChildNode
;
587
rightChildNode = node.
RightChildNode
;
716
parentNode.
RightChildNode
== this ||
791
Invariant.Assert(parentNode.
RightChildNode
== this, "Node has no relation to parent!");
838
Invariant.Assert(this.
RightChildNode
!= null, "Can't rotate left with null right child!");
840
rightChildNode = this.
RightChildNode
;
877
rightChildNodeChild = this.
RightChildNode
;
906
this.LeftChildNode = leftChildNode.
RightChildNode
;
907
if (leftChildNode.
RightChildNode
!= null)
909
leftChildNode.
RightChildNode
.ParentNode = this;
System\Windows\Documents\TextContainer.cs (2)
2704
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3029
Invariant.Assert(previousNode.
RightChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
143
if (node.
RightChildNode
!= null)
146
DumpNodeRecursive(node.
RightChildNode
, depth + 1);