Lines Matching defs:that
20 void DependChains::Merge(DependChains* that)
23 while (size_ > that->size_) {
29 auto rhs = that->head_;
30 size_t rhsSize = that->size_;
44 bool DependChains::Equals(DependChains* that)
46 if (that == nullptr) {
49 if (size_ != that->size_) {
53 auto rhs = that->head_;
68 DependChains* that = new (chunk_) DependChains(chunk_);
70 that->head_ = node;
71 that->size_ = size_ + 1;
72 return that;