Lines Matching defs:that
114 bool ListHead<T, M>::Iterator::operator!=(const Iterator& that) const {
115 return node_ != that.node_;
126 ListNode<T>* that = &(element->*M);
127 head_.prev_->next_ = that;
128 that->prev_ = head_.prev_;
129 that->next_ = &head_;
130 head_.prev_ = that;
135 ListNode<T>* that = &(element->*M);
136 head_.next_->prev_ = that;
137 that->prev_ = &head_;
138 that->next_ = head_.next_;
139 head_.next_ = that;
338 // that the standard allows them to either return a unique pointer or a
353 // Tell V8 that memory is low and retry.