14 writes to IsRed
PresentationFramework (14)
src\Framework\MS\Internal\Data\RBNode.cs (9)
515newNode.IsRed = true; 557sub.IsRed = node.IsRed; 632node.IsRed = this.IsRed; 637this.IsRed = true; 646node.IsRed = this.IsRed; 651this.IsRed = true; 658this.IsRed = !this.IsRed; 659LeftChild.IsRed = !LeftChild.IsRed; 660RightChild.IsRed = !RightChild.IsRed;
src\Framework\MS\Internal\Data\RBTree.cs (5)
118LeftChild.IsRed = false; 439LeftChild.IsRed = false; 515LeftChild.IsRed = false; 562LeftChild.IsRed = false; 610LeftChild.IsRed = false;
7 references to IsRed
PresentationFramework (7)
src\Framework\MS\Internal\Data\RBNode.cs (7)
557sub.IsRed = node.IsRed; 625return node != null && node.IsRed; 632node.IsRed = this.IsRed; 646node.IsRed = this.IsRed; 658this.IsRed = !this.IsRed; 659LeftChild.IsRed = !LeftChild.IsRed; 660RightChild.IsRed = !RightChild.IsRed;