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