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)
153
internal override SplayTreeNode
LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
336
internal override SplayTreeNode
LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
System\Windows\Documents\SplayTreeNode.cs (6)
463
this.
LeftChildNode
= null;
471
root.
LeftChildNode
= leftSubTree;
865
parentNode.
LeftChildNode
= rightChildNode;
873
rightChildNode.
LeftChildNode
= this;
906
this.
LeftChildNode
= leftChildNode.RightChildNode;
930
parentNode.
LeftChildNode
= leftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3049
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
;
241
walkerNode = nextNode.
LeftChildNode
;
379
Invariant.Assert(this.
LeftChildNode
== null);
399
Invariant.Assert(this.
LeftChildNode
== null, "Can't insert node with left children!");
440
leftSubTree = this.
LeftChildNode
;
565
leftChildNode = node.
LeftChildNode
;
715
return (parentNode.
LeftChildNode
== this ||
785
else if (parentNode.
LeftChildNode
== this)
841
this.RightChildNode = rightChildNode.
LeftChildNode
;
842
if (rightChildNode.
LeftChildNode
!= null)
844
rightChildNode.
LeftChildNode
.ParentNode = this;
903
Invariant.Assert(this.
LeftChildNode
!= null, "Can't rotate right with null left child!");
905
leftChildNode = this.
LeftChildNode
;
942
leftChildNodeChild = this.
LeftChildNode
;
System\Windows\Documents\TextContainer.cs (1)
3044
Invariant.Assert(nextNode.
LeftChildNode
== null);
System\Windows\Documents\TextTreeDumper.cs (2)
137
if (node.
LeftChildNode
!= null)
140
DumpNodeRecursive(node.
LeftChildNode
, depth + 1);