Lines Matching defs:that
2 // Use of this source code is governed by a BSD-style license that can be
69 // Verify that none of the inputs are {nullptr}.
96 // Allocate node with inline inputs. Capacity must be at least 1 so that
297 void Node::ReplaceUses(Node* that) {
299 DCHECK(that->first_use_ == nullptr || that->first_use_->prev == nullptr);
301 // Update the pointers to {this} to point to {that}.
304 *use->input_ptr() = that;
308 // Concat the use list of {this} and {that}.
309 last_use->next = that->first_use_;
310 if (that->first_use_) that->first_use_->prev = last_use;
311 that->first_use_ = this->first_use_;
391 // Check that the id didn't overflow.