7 overrides of LeftChildNode
PresentationFramework (7)
src\Framework\System\Windows\Documents\TextTreeFixupNode.cs (1)
187internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeObjectNode.cs (1)
152internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeRootNode.cs (1)
167internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeRootTextBlock.cs (1)
125internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextBlock.cs (1)
346internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextElementNode.cs (1)
158internal override SplayTreeNode LeftChildNode
src\Framework\System\Windows\Documents\TextTreeTextNode.cs (1)
339internal override SplayTreeNode LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
src\Framework\System\Windows\Documents\SplayTreeNode.cs (6)
470this.LeftChildNode = null; 478root.LeftChildNode = leftSubTree; 872parentNode.LeftChildNode = rightChildNode; 880rightChildNode.LeftChildNode = this; 913this.LeftChildNode = leftChildNode.RightChildNode; 937parentNode.LeftChildNode = leftChildNode;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
3097nextNode.LeftChildNode = maxChildNode;
18 references to LeftChildNode
PresentationFramework (18)
src\Framework\System\Windows\Documents\SplayTreeNode.cs (17)
45node = node.LeftChildNode; 92node = node.LeftChildNode; 100node = node.LeftChildNode; 185previousNode = this.LeftChildNode; 245walkerNode = nextNode.LeftChildNode; 386Invariant.Assert(this.LeftChildNode == null); 406Invariant.Assert(this.LeftChildNode == null, "Can't insert node with left children!"); 447leftSubTree = this.LeftChildNode; 572leftChildNode = node.LeftChildNode; 722return (parentNode.LeftChildNode == this || 792else if (parentNode.LeftChildNode == this) 848this.RightChildNode = rightChildNode.LeftChildNode; 849if (rightChildNode.LeftChildNode != null) 851rightChildNode.LeftChildNode.ParentNode = this; 910Invariant.Assert(this.LeftChildNode != null, "Can't rotate right with null left child!"); 912leftChildNode = this.LeftChildNode; 949leftChildNodeChild = this.LeftChildNode;
src\Framework\System\Windows\Documents\TextContainer.cs (1)
3092Invariant.Assert(nextNode.LeftChildNode == null);