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