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