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)
448
this.
RightChildNode
= null;
456
root.
RightChildNode
= rightSubTree;
497
maxNode.
RightChildNode
= rightSubTree;
527
this.
RightChildNode
= null;
819
this.
RightChildNode
= rightChildNode.LeftChildNode;
844
parentNode.
RightChildNode
= rightChildNode;
906
parentNode.
RightChildNode
= leftChildNode;
910
leftChildNode.
RightChildNode
= this;
System\Windows\Documents\TextContainer.cs (2)
3030
previousNode.
RightChildNode
= minChildNode;
3113
previousClone.
RightChildNode
= clone;
21 references to RightChildNode
PresentationFramework (21)
System\Windows\Documents\SplayTreeNode.cs (17)
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!");
437
rightSubTree = this.
RightChildNode
;
493
Invariant.Assert(maxNode.
RightChildNode
== null);
523
rightSubTree = this.
RightChildNode
;
565
rightChildNode = node.
RightChildNode
;
694
parentNode.
RightChildNode
== this ||
769
Invariant.Assert(parentNode.
RightChildNode
== this, "Node has no relation to parent!");
816
Invariant.Assert(this.
RightChildNode
!= null, "Can't rotate left with null right child!");
818
rightChildNode = this.
RightChildNode
;
852
rightChildNodeChild = this.
RightChildNode
;
881
this.LeftChildNode = leftChildNode.
RightChildNode
;
882
leftChildNode.
RightChildNode
?.ParentNode = this;
System\Windows\Documents\TextContainer.cs (2)
2700
for (childNode = middleSubTree; childNode != null; childNode = childNode.
RightChildNode
)
3025
Invariant.Assert(previousNode.
RightChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
142
if (node.
RightChildNode
!= null)
145
DumpNodeRecursive(node.
RightChildNode
, depth + 1);