7 overrides of LeftChildNode
PresentationFramework (7)
System\Windows\Documents\TextTreeFixupNode.cs (1)
181internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeObjectNode.cs (1)
146internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeRootNode.cs (1)
161internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeRootTextBlock.cs (1)
125internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextBlock.cs (1)
341internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextElementNode.cs (1)
152internal override SplayTreeNode LeftChildNode
System\Windows\Documents\TextTreeTextNode.cs (1)
333internal override SplayTreeNode LeftChildNode
7 writes to LeftChildNode
PresentationFramework (7)
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;
System\Windows\Documents\TextContainer.cs (1)
3081nextNode.LeftChildNode = maxChildNode;
20 references to LeftChildNode
PresentationFramework (20)
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;
System\Windows\Documents\TextContainer.cs (1)
3076Invariant.Assert(nextNode.LeftChildNode == null);
System\Windows\Documents\TextTreeDumper.cs (2)
140if (node.LeftChildNode != null) 143DumpNodeRecursive(node.LeftChildNode, depth + 1);