Searched refs:checkInvariantsFromNode (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODIntervalTree.h140 return checkInvariantsFromNode(this->root(), 0);
207 bool checkInvariantsFromNode(IntervalNode* node, T* currentMaxValue) const function in class:blink::FINAL
216 if (!checkInvariantsFromNode(left, &leftMaxValue))
220 if (!checkInvariantsFromNode(right, &rightMaxValue))
H A DPODRedBlackTree.h225 return checkInvariantsFromNode(m_root, &blackCount);
751 bool checkInvariantsFromNode(Node* node, int* blackCount) const function in class:blink::PODRedBlackTree
776 bool leftValid = checkInvariantsFromNode(node->left(), &leftCount);
777 bool rightValid = checkInvariantsFromNode(node->right(), &rightCount);

Completed in 868 milliseconds