Lines Matching defs:other
11 // and/or other materials provided with the distribution.
51 // - Elements with an invalid key must compare higher or equal to any other
246 InvalSet(const InvalSet& other) = delete;
247 InvalSet operator=(const InvalSet& other) = delete;
249 InvalSet(const InvalSet& other);
250 InvalSet operator=(const InvalSet& other);
275 InvalSetIterator(const InvalSetIterator<S>& other);
276 InvalSetIterator<S>& operator=(InvalSetIterator<S> other);
278 InvalSetIterator(InvalSetIterator<S>&& other) noexcept;
869 InvalSetIterator<S>::InvalSetIterator(const InvalSetIterator<S>& other)
870 : using_vector_(other.using_vector_),
871 index_(other.index_),
872 inval_set_(other.inval_set_),
873 iterator_(other.iterator_) {
882 InvalSetIterator<S>::InvalSetIterator(InvalSetIterator<S>&& other) noexcept
884 swap(*this, other);
890 InvalSetIterator<S>& InvalSetIterator<S>::operator=(InvalSetIterator<S> other) {
891 swap(*this, other);