7 overrides of LeftChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
181
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
146
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
161
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
125
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
341
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
152
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
333
internal override SplayTreeNode
LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
System\Windows\Documents\SplayTreeNode.cs (6)
470
this.
LeftChildNode
= null;
478
root.
LeftChildNode
= leftSubTree;
872
parentNode.
LeftChildNode
= rightChildNode;
880
rightChildNode.
LeftChildNode
= this;
913
this.
LeftChildNode
= leftChildNode.RightChildNode;
937
parentNode.
LeftChildNode
= leftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3081
nextNode.
LeftChildNode
= maxChildNode;
20 references to LeftChildNode
PresentationFramework (20)
System\Windows\Documents\SplayTreeNode.cs (17)
45
node = node.
LeftChildNode
;
92
node = node.
LeftChildNode
;
100
node = node.
LeftChildNode
;
185
previousNode = this.
LeftChildNode
;
245
walkerNode = nextNode.
LeftChildNode
;
386
Invariant.Assert(this.
LeftChildNode
== null);
406
Invariant.Assert(this.
LeftChildNode
== null, "Can't insert node with left children!");
447
leftSubTree = this.
LeftChildNode
;
572
leftChildNode = node.
LeftChildNode
;
722
return (parentNode.
LeftChildNode
== this ||
792
else if (parentNode.
LeftChildNode
== this)
848
this.RightChildNode = rightChildNode.
LeftChildNode
;
849
if (rightChildNode.
LeftChildNode
!= null)
851
rightChildNode.
LeftChildNode
.ParentNode = this;
910
Invariant.Assert(this.
LeftChildNode
!= null, "Can't rotate right with null left child!");
912
leftChildNode = this.
LeftChildNode
;
949
leftChildNodeChild = this.
LeftChildNode
;
System\Windows\Documents\TextContainer.cs (1)
3076
Invariant.Assert(nextNode.
LeftChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
140
if (node.
LeftChildNode
!= null)
143
DumpNodeRecursive(node.
LeftChildNode
, depth + 1);