Lines Matching refs:other
29 * documentation and/or other materials provided with the distribution;
254 sc_member_access(const NonConstPolicy &other) : ptr_(other.ptr_) {}
388 operator == (const ConstDirectIterator &other) const
390 return it_ == other.it_;
393 operator != (const ConstDirectIterator &other) const
395 return it_ != other.it_;
398 operator <= (const ConstDirectIterator &other) const
400 return it_ <= other.it_;
403 operator >= (const ConstDirectIterator &other) const
405 return it_ >= other.it_;
408 operator < (const ConstDirectIterator &other) const
410 return it_ < other.it_;
413 operator > (const ConstDirectIterator &other) const
415 return it_ > other.it_;
435 operator - (ConstDirectIterator const &other) const
437 return it_ - other.it_;
622 sc_vector_assembly(const sc_vector_assembly &other) :
623 vec_(other.vec_), ptr_(other.ptr_)