Lines Matching refs:child
85 const Node* child = node->fFirstChild;
89 for (; child != nullptr; child = child->fNextSibling)
90 if (!strcmp(name, child->fName))
93 return child;
270 SkDOM::Node* child = parent->fFirstChild;
272 while (child)
274 SkDOM::Node* next = child->fNextSibling;
275 child->fNextSibling = prev;
276 prev = child;
277 child = next;