Home | History | Annotate | Download | only in core

Lines Matching full:froot

63             fRoot.fChild.subtree = allocateNode(0);
64 fRoot.fChild.subtree->fNumChildren = 0;
68 Branch* newSibling = insert(fRoot.fChild.subtree, &newBranch);
69 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree);
72 Node* oldRoot = fRoot.fChild.subtree;
75 *newRoot->child(0) = fRoot;
77 fRoot.fChild.subtree = newRoot;
78 fRoot.fBounds = this->computeBounds(fRoot.fChild.subtree);
90 fRoot.fChild.subtree = allocateNode(0);
91 fRoot.fChild.subtree->fNumChildren = 0;
92 this->insert(fRoot.fChild.subtree, &fDeferredInserts[0]);
93 fRoot.fBounds = fDeferredInserts[0].fBounds;
95 fRoot = this->bulkLoad(&fDeferredInserts);
110 if (!this->isEmpty() && SkIRect::IntersectsNoEmptyCheck(fRoot.fBounds, query)) {
111 this->search(fRoot.fChild.subtree, query, results);
407 SkASSERT(fCount == this->validateSubtree(fRoot.fChild.subtree, fRoot.fBounds, true));