3 references to Verify
PresentationFramework (3)
MS\Internal\Data\RBNode.cs (2)
724result = Verify(node.LeftChild, comparison, blackDepth, ref index, ref maxItem, out size); 767result = Verify(node.RightChild, comparison, blackDepth, ref index, ref maxItem, out rightSize) && result;
MS\Internal\Data\RBTree.cs (1)
649bool b = Verify(LeftChild, checkSort ? Comparison : null, 0, ref index, ref maxItem, out size) && size == LeftSize && size == expectedSize;