3 references to InsertNode
PresentationFramework (3)
src\Framework\MS\Internal\Data\RBNode.cs (2)
521
node.LeftChild =
InsertNode
(root, node, node.LeftChild, index, out newNode);
526
node.RightChild =
InsertNode
(root, node, node.RightChild, index - node.LeftSize - node.Size, out newNode);
src\Framework\MS\Internal\Data\RBTree.cs (1)
431
LeftChild =
InsertNode
(this, this, LeftChild, index, out node);