7 overrides of LeftChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
179
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
144
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
158
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
122
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
339
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
152
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
335
internal override SplayTreeNode
LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
System\Windows\Documents\SplayTreeNode.cs (6)
462
this.
LeftChildNode
= null;
470
root.
LeftChildNode
= leftSubTree;
864
parentNode.
LeftChildNode
= rightChildNode;
872
rightChildNode.
LeftChildNode
= this;
905
this.
LeftChildNode
= leftChildNode.RightChildNode;
929
parentNode.
LeftChildNode
= leftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3048
nextNode.
LeftChildNode
= maxChildNode;
20 references to LeftChildNode
PresentationFramework (20)
System\Windows\Documents\SplayTreeNode.cs (17)
43
node = node.
LeftChildNode
;
90
node = node.
LeftChildNode
;
98
node = node.
LeftChildNode
;
183
previousNode = this.
LeftChildNode
;
240
walkerNode = nextNode.
LeftChildNode
;
378
Invariant.Assert(this.
LeftChildNode
== null);
398
Invariant.Assert(this.
LeftChildNode
== null, "Can't insert node with left children!");
439
leftSubTree = this.
LeftChildNode
;
564
leftChildNode = node.
LeftChildNode
;
714
return (parentNode.
LeftChildNode
== this ||
784
else if (parentNode.
LeftChildNode
== this)
840
this.RightChildNode = rightChildNode.
LeftChildNode
;
841
if (rightChildNode.
LeftChildNode
!= null)
843
rightChildNode.
LeftChildNode
.ParentNode = this;
902
Invariant.Assert(this.
LeftChildNode
!= null, "Can't rotate right with null left child!");
904
leftChildNode = this.
LeftChildNode
;
941
leftChildNodeChild = this.
LeftChildNode
;
System\Windows\Documents\TextContainer.cs (1)
3043
Invariant.Assert(nextNode.
LeftChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
136
if (node.
LeftChildNode
!= null)
139
DumpNodeRecursive(node.
LeftChildNode
, depth + 1);