Lines Matching refs:use_
352 Node* from() const { return use_->from(); } in from()
355 int const index = use_->input_index(); in index()
356 DCHECK_LT(index, use_->from()->InputCount()); in index()
366 if (old_to) old_to->RemoveUse(use_); in UpdateTo()
368 if (new_to) new_to->AppendUse(use_); in UpdateTo()
376 Edge(Node::Use* use, Node** input_ptr) : use_(use), input_ptr_(input_ptr) { in Edge()
382 Node::Use* use_; variable
396 iterator() : use_(nullptr), input_ptr_(nullptr) {} in iterator()
398 : use_(other.use_), input_ptr_(other.input_ptr_) {} in iterator()
400 Edge operator*() const { return Edge(use_, input_ptr_); }
407 use_--;
416 : use_(from->GetUsePtr(index)), input_ptr_(from->GetInputPtr(index)) {}
418 Use* use_; variable