7 overrides of RightChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
193
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
158
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
172
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
136
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
353
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
166
internal override SplayTreeNode
RightChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
349
internal override SplayTreeNode
RightChildNode
10 writes to RightChildNode
PresentationFramework (10)
System\Windows\Documents\SplayTreeNode.cs (8)
463
this.
RightChildNode
= null;
471
root.
RightChildNode
= rightSubTree;
515
maxNode.
RightChildNode
= rightSubTree;
548
this.
RightChildNode
= null;
840
this.
RightChildNode
= rightChildNode.LeftChildNode;
868
parentNode.
RightChildNode
= rightChildNode;
933
parentNode.
RightChildNode
= leftChildNode;
937
leftChildNode.
RightChildNode
= this;
System\Windows\Documents\TextContainer.cs (2)
3033
previousNode.
RightChildNode
= minChildNode;
3119
previousClone.
RightChildNode
= clone;
22 references to RightChildNode
PresentationFramework (22)
System\Windows\Documents\SplayTreeNode.cs (18)
59
node = node.
RightChildNode
;
115
node = node.
RightChildNode
;
190
walkerNode = previousNode.
RightChildNode
;
233
nextNode = this.
RightChildNode
;
379
Invariant.Assert(this.
RightChildNode
== null);
399
Invariant.Assert(this.
RightChildNode
== null, "Can't insert node with right children!");
440
rightSubTree = this.
RightChildNode
;
511
Invariant.Assert(maxNode.
RightChildNode
== null);
544
rightSubTree = this.
RightChildNode
;
586
rightChildNode = node.
RightChildNode
;
715
parentNode.
RightChildNode
== this ||
790
Invariant.Assert(parentNode.
RightChildNode
== this, "Node has no relation to parent!");
837
Invariant.Assert(this.
RightChildNode
!= null, "Can't rotate left with null right child!");
839
rightChildNode = this.
RightChildNode
;
876
rightChildNodeChild = this.
RightChildNode
;
905
this.LeftChildNode = leftChildNode.
RightChildNode
;
906
if (leftChildNode.
RightChildNode
!= null)
908
leftChildNode.
RightChildNode
.ParentNode = this;
System\Windows\Documents\TextContainer.cs (2)
2703
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3028
Invariant.Assert(previousNode.
RightChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
142
if (node.
RightChildNode
!= null)
145
DumpNodeRecursive(node.
RightChildNode
, depth + 1);