7 overrides of LeftChildNode
PresentationFramework (7)
src\Framework\System\Windows\Documents\TextTreeFixupNode.cs (1)
187
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeObjectNode.cs (1)
152
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeRootNode.cs (1)
167
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeRootTextBlock.cs (1)
125
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextBlock.cs (1)
346
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextElementNode.cs (1)
158
internal override SplayTreeNode
LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (1)
339
internal override SplayTreeNode
LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
src\Framework\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;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
3097
nextNode.
LeftChildNode
= maxChildNode;
18 references to LeftChildNode
PresentationFramework (18)
src\Framework\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
;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
3092
Invariant.Assert(nextNode.
LeftChildNode
== null);