Lines Matching refs:validateChildRelations
168 bool validateChildRelations(const Node* n, bool allowRedRed) const;
515 GR_DEBUGASSERT(validateChildRelations(d, true)); in rotateRight()
516 GR_DEBUGASSERT(validateChildRelations(s, true)); in rotateRight()
517 GR_DEBUGASSERT(validateChildRelations(n, false)); in rotateRight()
518 GR_DEBUGASSERT(validateChildRelations(n->fChildren[kRight_Child], true)); in rotateRight()
519 GR_DEBUGASSERT(validateChildRelations(b, true)); in rotateRight()
520 GR_DEBUGASSERT(validateChildRelations(s->fChildren[kLeft_Child], true)); in rotateRight()
547 GR_DEBUGASSERT(validateChildRelations(d, true)); in rotateLeft()
548 GR_DEBUGASSERT(validateChildRelations(s, true)); in rotateLeft()
549 GR_DEBUGASSERT(validateChildRelations(n, true)); in rotateLeft()
550 GR_DEBUGASSERT(validateChildRelations(n->fChildren[kLeft_Child], true)); in rotateLeft()
551 GR_DEBUGASSERT(validateChildRelations(b, true)); in rotateLeft()
552 GR_DEBUGASSERT(validateChildRelations(s->fChildren[kRight_Child], true)); in rotateLeft()
878 SkASSERT(validateChildRelations(n, false)); in checkNode()
896 bool GrRedBlackTree<T,C>::validateChildRelations(const Node* n, in validateChildRelations() function