14 writes to IsRed
PresentationFramework (14)
MS\Internal\Data\RBNode.cs (9)
507newNode.IsRed = true; 549sub.IsRed = node.IsRed; 624node.IsRed = this.IsRed; 629this.IsRed = true; 638node.IsRed = this.IsRed; 643this.IsRed = true; 650this.IsRed = !this.IsRed; 651LeftChild.IsRed = !LeftChild.IsRed; 652RightChild.IsRed = !RightChild.IsRed;
MS\Internal\Data\RBTree.cs (5)
110LeftChild.IsRed = false; 427LeftChild?.IsRed = false; 502LeftChild?.IsRed = false; 549LeftChild.IsRed = false; 594LeftChild?.IsRed = false;
7 references to IsRed
PresentationFramework (7)
MS\Internal\Data\RBNode.cs (7)
549sub.IsRed = node.IsRed; 617return node != null && node.IsRed; 624node.IsRed = this.IsRed; 638node.IsRed = this.IsRed; 650this.IsRed = !this.IsRed; 651LeftChild.IsRed = !LeftChild.IsRed; 652RightChild.IsRed = !RightChild.IsRed;