Lines Matching refs:this
4 * you may not use this file except in compliance with the License.
25 LinkedList() : prev(this), next(this)
48 return ContainerOf(this, member);
168 InsertAfter(this, &node);
173 InsertAfter(this, node);
178 InsertBefore(this, &node);
183 InsertBefore(this, node);
188 return Next(this);
194 return Next(this, member);
199 return RemoveNext(this);
205 return RemoveNext(this, member);
210 return RemovePrev(this);
216 return RemovePrev(this, member);
274 return next == this;
284 return (next != nullptr && next != this);