3 references to InsertNode
PresentationFramework (3)
MS\Internal\Data\RBNode.cs (2)
518node.LeftChild = InsertNode(root, node, node.LeftChild, index, out newNode); 523node.RightChild = InsertNode(root, node, node.RightChild, index - node.LeftSize - node.Size, out newNode);
MS\Internal\Data\RBTree.cs (1)
428LeftChild = InsertNode(this, this, LeftChild, index, out node);