1 type derived from RBTree
PresentationFramework (1)
src\Framework\MS\Internal\Data\LiveShapingTree.cs (1)
18
internal class LiveShapingTree :
RBTree
<LiveShapingItem>
7 references to RBTree
PresentationFramework (7)
src\Framework\MS\Internal\Data\RBNode.cs (7)
382
RBTree
<T> root = node.GetRootAndIndex(node, out index);
392
RBTree
<T> root = GetRootAndIndex(node, out index);
396
protected
RBTree
<T> GetRoot(RBNode<T> node)
401
return (
RBTree
<T>)node;
404
protected
RBTree
<T> GetRootAndIndex(RBNode<T> node, out int index)
412
return (
RBTree
<T>)node;
509
protected RBNode<T> InsertNode(
RBTree
<T> root, RBNode<T> parent, RBNode<T> node, int index, out RBNode<T> newNode)