Lines Matching refs:mLast
52 NODE* mLast;
55 LinkedList() : mFirst(0), mLast(0) { }
59 NODE const* tail() const { return mLast; }
60 NODE* tail() { return mLast; }
65 if (node->next == 0) mLast = newNode;
80 mFirst = mLast = newNode;
91 if (mLast == 0) {
94 newNode->prev = mLast;
96 mLast->next = newNode;
97 mLast = newNode;
104 if (node->next == 0) mLast = node->prev;