Lines Matching defs:firstChild
92 deMemPool* firstChild; /*!< Pointer to first child pool in linked list. */
200 if (parent->firstChild) parent->firstChild->prevPool = pool;
201 pool->nextPool = parent->firstChild;
202 parent->firstChild = pool;
316 iter = pool->firstChild;
333 if (parent->firstChild == pool)
334 parent->firstChild = pool->nextPool;
401 for (child = pool->firstChild; child; child = child->nextPool)
419 for (child = pool->firstChild; child; child = child->nextPool)