Home | History | Annotate | Download | only in compiler

Lines Matching refs:other

39 // compilation, e.g. during lowering passes. Other information that needs to be
360 bool operator==(const Edge& other) { return input_ptr_ == other.input_ptr_; }
361 bool operator!=(const Edge& other) { return !(*this == other); }
397 iterator(const iterator& other)
398 : use_(other.use_), input_ptr_(other.input_ptr_) {}
401 bool operator==(const iterator& other) const {
402 return input_ptr_ == other.input_ptr_;
404 bool operator!=(const iterator& other) const { return !(*this == other); }
442 const_iterator(const const_iterator& other) : iter_(other.iter_) {}
445 bool operator==(const const_iterator& other) const {
446 return iter_ == other.iter_;
448 bool operator!=(const const_iterator& other) const {
449 return !(*this == other);
479 iterator(const iterator& other)
480 : current_(other.current_), next_(other.next_) {}
483 bool operator==(const iterator& other) const {
484 return current_ == other.current_;
486 bool operator!=(const iterator& other) const { return !(*this == other); }
527 const_iterator(const const_iterator& other) : current_(other.current_) {}
530 bool operator==(const const_iterator& other) const {
531 return other.current_ == current_;
533 bool operator!=(const const_iterator& other) const {
534 return other.current_ != current_;