7 overrides of LeftChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
180
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
145
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
159
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
123
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
340
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
151
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
332
internal override SplayTreeNode
LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
System\Windows\Documents\SplayTreeNode.cs (6)
469
this.
LeftChildNode
= null;
477
root.
LeftChildNode
= leftSubTree;
871
parentNode.
LeftChildNode
= rightChildNode;
879
rightChildNode.
LeftChildNode
= this;
912
this.
LeftChildNode
= leftChildNode.RightChildNode;
936
parentNode.
LeftChildNode
= leftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3076
nextNode.
LeftChildNode
= maxChildNode;
20 references to LeftChildNode
PresentationFramework (20)
System\Windows\Documents\SplayTreeNode.cs (17)
44
node = node.
LeftChildNode
;
91
node = node.
LeftChildNode
;
99
node = node.
LeftChildNode
;
184
previousNode = this.
LeftChildNode
;
244
walkerNode = nextNode.
LeftChildNode
;
385
Invariant.Assert(this.
LeftChildNode
== null);
405
Invariant.Assert(this.
LeftChildNode
== null, "Can't insert node with left children!");
446
leftSubTree = this.
LeftChildNode
;
571
leftChildNode = node.
LeftChildNode
;
721
return (parentNode.
LeftChildNode
== this ||
791
else if (parentNode.
LeftChildNode
== this)
847
this.RightChildNode = rightChildNode.
LeftChildNode
;
848
if (rightChildNode.
LeftChildNode
!= null)
850
rightChildNode.
LeftChildNode
.ParentNode = this;
909
Invariant.Assert(this.
LeftChildNode
!= null, "Can't rotate right with null left child!");
911
leftChildNode = this.
LeftChildNode
;
948
leftChildNodeChild = this.
LeftChildNode
;
System\Windows\Documents\TextContainer.cs (1)
3071
Invariant.Assert(nextNode.
LeftChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
137
if (node.
LeftChildNode
!= null)
140
DumpNodeRecursive(node.
LeftChildNode
, depth + 1);