Home | History | Annotate | Download | only in layers

Lines Matching refs:fParent

20     fParent = NULL;
40 fParent = NULL;
77 SkASSERT(m_children[index]->fParent == this);
87 SkASSERT(child->fParent == NULL);
88 child->fParent = this;
95 if (fParent) {
96 int index = fParent->m_children.find(this);
98 fParent->m_children.remove(index);
99 fParent = NULL;
108 SkASSERT(child->fParent == this);
109 child->fParent = NULL; // in case it has more than one owner
117 while (root->fParent != NULL) {
118 root = root->fParent;
154 for (const Layer* layer = this->fParent; layer != ancestor; layer = layer->fParent) {