Lines Matching refs:child
63 Entry* child;
65 Entry(TKey key_, TValue value_) : key(key_), value(value_), parent(NULL), child(NULL) {
232 for (Entry* p = mOldest; p != NULL; p = p->child) {
250 mYoungest->child = &entry;
258 entry.parent->child = entry.child;
260 mOldest = entry.child;
262 if (entry.child != NULL) {
263 entry.child->parent = entry.parent;
269 entry.child = NULL;