7 overrides of LeftChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
179internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
144internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
158internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
122internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
339internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
152internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
335internal override SplayTreeNode LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
System\Windows\Documents\SplayTreeNode.cs (6)
462this.LeftChildNode = null; 470root.LeftChildNode = leftSubTree; 864parentNode.LeftChildNode = rightChildNode; 872rightChildNode.LeftChildNode = this; 905this.LeftChildNode = leftChildNode.RightChildNode; 929parentNode.LeftChildNode = leftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3048nextNode.LeftChildNode = maxChildNode;
20 references to LeftChildNode
PresentationFramework (20)
System\Windows\Documents\SplayTreeNode.cs (17)
43node = node.LeftChildNode; 90node = node.LeftChildNode; 98node = node.LeftChildNode; 183previousNode = this.LeftChildNode; 240walkerNode = nextNode.LeftChildNode; 378Invariant.Assert(this.LeftChildNode == null); 398Invariant.Assert(this.LeftChildNode == null, "Can't insert node with left children!"); 439leftSubTree = this.LeftChildNode; 564leftChildNode = node.LeftChildNode; 714return (parentNode.LeftChildNode == this || 784else if (parentNode.LeftChildNode == this) 840this.RightChildNode = rightChildNode.LeftChildNode; 841if (rightChildNode.LeftChildNode != null) 843rightChildNode.LeftChildNode.ParentNode = this; 902Invariant.Assert(this.LeftChildNode != null, "Can't rotate right with null left child!"); 904leftChildNode = this.LeftChildNode; 941leftChildNodeChild = this.LeftChildNode;
System\Windows\Documents\TextContainer.cs (1)
3043Invariant.Assert(nextNode.LeftChildNode == null);
System\Windows\Documents\TextTreeDumper.cs (2)
136if (node.LeftChildNode != null) 139DumpNodeRecursive(node.LeftChildNode, depth + 1);