HelenOS sources

other              78 kernel/generic/include/context.h _NO_TRACE static inline void context_swap(context_t *self, context_t *other)
other              81 kernel/generic/include/context.h 		context_restore_arch(other);
other              74 uspace/app/hbench/synch/fibril_mutex.c 	fid_t other = fibril_create(competitor, &shared);
other              75 uspace/app/hbench/synch/fibril_mutex.c 	fibril_add_ready(other);
other             207 uspace/app/top/screen.c 	size_t other = 0;
other             229 uspace/app/top/screen.c 			other++;
other             238 uspace/app/top/screen.c 	    total, running, ready, sleeping, lingering, other, invalid);
other             209 uspace/dist/src/c/demos/top/screen.c 	size_t other = 0;
other             231 uspace/dist/src/c/demos/top/screen.c 			other++;
other             240 uspace/dist/src/c/demos/top/screen.c 	    total, running, ready, sleeping, lingering, other, invalid);
other              43 uspace/lib/c/generic/context.c void context_swap(context_t *self, context_t *other)
other              46 uspace/lib/c/generic/context.c 		__context_restore(other, 1);
other              45 uspace/lib/c/include/context.h extern void context_swap(context_t *self, context_t *other);
other              69 uspace/lib/cpp/include/__bits/adt/array.hpp         void swap(array& other)
other              73 uspace/lib/cpp/include/__bits/adt/array.hpp             swap_ranges(begin(), end(), other.begin());
other              60 uspace/lib/cpp/include/__bits/adt/bitset.hpp                     reference& operator=(const reference& other) noexcept
other              62 uspace/lib/cpp/include/__bits/adt/bitset.hpp                         if (other)
other              72 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_const_iterator(const deque_const_iterator& other)
other              73 uspace/lib/cpp/include/__bits/adt/deque.hpp                     : deq_{other.deq_}, idx_{other.idx_}
other              76 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_const_iterator& operator=(const deque_const_iterator& other)
other              78 uspace/lib/cpp/include/__bits/adt/deque.hpp                     deq_ = other.deq_;
other              79 uspace/lib/cpp/include/__bits/adt/deque.hpp                     idx_ = other.idx_;
other             198 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_iterator(const deque_iterator& other)
other             199 uspace/lib/cpp/include/__bits/adt/deque.hpp                     : deq_{other.deq_}, idx_{other.idx_}
other             202 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_iterator(const deque_const_iterator<T, Allocator>& other)
other             203 uspace/lib/cpp/include/__bits/adt/deque.hpp                     : deq_{other.deq_}, idx_{other.idx_}
other             206 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_iterator& operator=(const deque_iterator& other)
other             208 uspace/lib/cpp/include/__bits/adt/deque.hpp                     deq_ = other.deq_;
other             209 uspace/lib/cpp/include/__bits/adt/deque.hpp                     idx_ = other.idx_;
other             214 uspace/lib/cpp/include/__bits/adt/deque.hpp                 deque_iterator& operator=(const deque_const_iterator<T, Allocator>& other)
other             216 uspace/lib/cpp/include/__bits/adt/deque.hpp                     deq_ = other.deq_;
other             217 uspace/lib/cpp/include/__bits/adt/deque.hpp                     idx_ = other.idx_;
other             397 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque(const deque& other)
other             398 uspace/lib/cpp/include/__bits/adt/deque.hpp                 : deque{other.begin(), other.end(), other.allocator_}
other             401 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque(deque&& other)
other             402 uspace/lib/cpp/include/__bits/adt/deque.hpp                 : allocator_{move(other.allocator_)},
other             403 uspace/lib/cpp/include/__bits/adt/deque.hpp                   front_bucket_idx_{other.front_bucket_idx_},
other             404 uspace/lib/cpp/include/__bits/adt/deque.hpp                   back_bucket_idx_{other.back_bucket_idx_},
other             405 uspace/lib/cpp/include/__bits/adt/deque.hpp                   front_bucket_{other.front_bucket_},
other             406 uspace/lib/cpp/include/__bits/adt/deque.hpp                   back_bucket_{other.back_bucket_},
other             407 uspace/lib/cpp/include/__bits/adt/deque.hpp                   bucket_count_{other.bucket_count_},
other             408 uspace/lib/cpp/include/__bits/adt/deque.hpp                   bucket_capacity_{other.bucket_capacity_},
other             409 uspace/lib/cpp/include/__bits/adt/deque.hpp                   size_{other.size_}, data_{other.data_}
other             411 uspace/lib/cpp/include/__bits/adt/deque.hpp                 other.data_ = nullptr;
other             412 uspace/lib/cpp/include/__bits/adt/deque.hpp                 other.clear();
other             415 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque(const deque& other, const allocator_type& alloc)
other             416 uspace/lib/cpp/include/__bits/adt/deque.hpp                 : deque{other.begin(), other.end(), alloc}
other             419 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque(deque&& other, const allocator_type& alloc)
other             421 uspace/lib/cpp/include/__bits/adt/deque.hpp                   front_bucket_idx_{other.front_bucket_idx_},
other             422 uspace/lib/cpp/include/__bits/adt/deque.hpp                   back_bucket_idx_{other.front_bucket_idx_},
other             423 uspace/lib/cpp/include/__bits/adt/deque.hpp                   front_bucket_{other.front_bucket_},
other             424 uspace/lib/cpp/include/__bits/adt/deque.hpp                   back_bucket_{other.back_bucket_},
other             425 uspace/lib/cpp/include/__bits/adt/deque.hpp                   bucket_count_{other.bucket_count_},
other             426 uspace/lib/cpp/include/__bits/adt/deque.hpp                   bucket_capacity_{other.bucket_capacity_},
other             427 uspace/lib/cpp/include/__bits/adt/deque.hpp                   size_{other.size_}, data_{other.data_}
other             429 uspace/lib/cpp/include/__bits/adt/deque.hpp                 other.data_ = nullptr;
other             430 uspace/lib/cpp/include/__bits/adt/deque.hpp                 other.clear();
other             447 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque& operator=(const deque& other)
other             452 uspace/lib/cpp/include/__bits/adt/deque.hpp                 copy_from_range_(other.begin(), other.end());
other             457 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque& operator=(deque&& other)
other             460 uspace/lib/cpp/include/__bits/adt/deque.hpp                 swap(other);
other             461 uspace/lib/cpp/include/__bits/adt/deque.hpp                 other.clear();
other             914 uspace/lib/cpp/include/__bits/adt/deque.hpp             void swap(deque& other)
other             917 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(allocator_, other.allocator_);
other             918 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(front_bucket_idx_, other.front_bucket_idx_);
other             919 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(back_bucket_idx_, other.back_bucket_idx_);
other             920 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(front_bucket_, other.front_bucket_);
other             921 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(back_bucket_, other.back_bucket_);
other             922 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(bucket_count_, other.bucket_count_);
other             923 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(bucket_capacity_, other.bucket_capacity_);
other             924 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(size_, other.size_);
other             925 uspace/lib/cpp/include/__bits/adt/deque.hpp                 std::swap(data_, other.data_);
other             102 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table(const hash_table& other)
other             103 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 : hash_table{other.bucket_count_, other.hasher_, other.key_eq_,
other             104 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                              other.max_load_factor_}
other             106 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 for (const auto& x: other)
other             110 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table(hash_table&& other)
other             111 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 : table_{other.table_}, bucket_count_{other.bucket_count_},
other             112 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                   size_{other.size_}, hasher_{move(other.hasher_)},
other             113 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                   key_eq_{move(other.key_eq_)}, key_extractor_{move(other.key_extractor_)},
other             114 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                   max_load_factor_{other.max_load_factor_}
other             116 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 other.table_ = nullptr;
other             117 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 other.bucket_count_ = size_type{};
other             118 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 other.size_ = size_type{};
other             119 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 other.max_load_factor_ = 1.f;
other             122 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table& operator=(const hash_table& other)
other             124 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 hash_table tmp{other};
other             130 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table& operator=(hash_table&& other)
other             132 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 hash_table tmp{move(other)};
other             252 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             void swap(hash_table& other)
other             257 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(table_, other.table_);
other             258 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(bucket_count_, other.bucket_count_);
other             259 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(size_, other.size_);
other             260 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(hasher_, other.hasher_);
other             261 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(key_eq_, other.key_eq_);
other             262 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 std::swap(max_load_factor_, other.max_load_factor_);
other             462 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             bool is_eq_to(const hash_table& other) const
other             464 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 if (size() != other.size())
other             487 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                     auto other_cnt = other.count(key_extractor_(*it));
other             165 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_iterator(const non_const_iterator_type& other)
other             166 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 : table_{other.table_}, idx_{other.idx_}, max_idx_{other.max_idx_},
other             167 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                   current_{other.current_}
other             170 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_iterator& operator=(const non_const_iterator_type& other)
other             172 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 table_ = other.table_;
other             173 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 idx_ = other.idx_;
other             174 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 max_idx_ = other.max_idx_;
other             175 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 current_ = other.current_;
other             387 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_local_iterator(const non_const_iterator_type& other)
other             388 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 : head_{other.head_}, current_{other.current_}
other             391 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_local_iterator& operator=(const non_const_iterator_type& other)
other             393 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 head_ = other.head_;
other             394 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 current_ = other.current_;
other              73 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_const_iterator(const list_iterator<T>& other)
other              74 uspace/lib/cpp/include/__bits/adt/list.hpp                     : current_{other.node()}, head_{other.head()}, end_{other.end()}
other             402 uspace/lib/cpp/include/__bits/adt/list.hpp             list(const list& other)
other             403 uspace/lib/cpp/include/__bits/adt/list.hpp                 : list{other, other.allocator_}
other             406 uspace/lib/cpp/include/__bits/adt/list.hpp             list(list&& other)
other             407 uspace/lib/cpp/include/__bits/adt/list.hpp                 : allocator_{move(other.allocator_)},
other             408 uspace/lib/cpp/include/__bits/adt/list.hpp                   head_{move(other.head_)},
other             409 uspace/lib/cpp/include/__bits/adt/list.hpp                   size_{move(other.size_)}
other             411 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.head_ = nullptr;
other             412 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.size_ = size_type{};
other             415 uspace/lib/cpp/include/__bits/adt/list.hpp             list(const list& other, const allocator_type alloc)
other             418 uspace/lib/cpp/include/__bits/adt/list.hpp                 init_(other.begin(), other.end());
other             421 uspace/lib/cpp/include/__bits/adt/list.hpp             list(list&& other, const allocator_type& alloc)
other             423 uspace/lib/cpp/include/__bits/adt/list.hpp                   head_{move(other.head_)},
other             424 uspace/lib/cpp/include/__bits/adt/list.hpp                   size_{move(other.size_)}
other             426 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.head_ = nullptr;
other             427 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.size_ = size_type{};
other             441 uspace/lib/cpp/include/__bits/adt/list.hpp             list& operator=(const list& other)
other             445 uspace/lib/cpp/include/__bits/adt/list.hpp                 allocator_ = other.allocator_;
other             447 uspace/lib/cpp/include/__bits/adt/list.hpp                 init_(other.begin(), other.end());
other             452 uspace/lib/cpp/include/__bits/adt/list.hpp             list& operator=(list&& other)
other             457 uspace/lib/cpp/include/__bits/adt/list.hpp                 head_ = move(other.head_);
other             458 uspace/lib/cpp/include/__bits/adt/list.hpp                 size_ = move(other.size_);
other             459 uspace/lib/cpp/include/__bits/adt/list.hpp                 allocator_ = move(other.allocator_);
other             461 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.head_ = nullptr;
other             462 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.size_ = size_type{};
other             817 uspace/lib/cpp/include/__bits/adt/list.hpp             void swap(list& other)
other             820 uspace/lib/cpp/include/__bits/adt/list.hpp                 std::swap(allocator_, other.allocator_);
other             821 uspace/lib/cpp/include/__bits/adt/list.hpp                 std::swap(head_, other.head_);
other             822 uspace/lib/cpp/include/__bits/adt/list.hpp                 std::swap(size_, other.size_);
other             834 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list& other)
other             838 uspace/lib/cpp/include/__bits/adt/list.hpp                     swap(other);
other             842 uspace/lib/cpp/include/__bits/adt/list.hpp                 auto other_first = other.head_;
other             843 uspace/lib/cpp/include/__bits/adt/list.hpp                 auto other_last = other.get_last_();
other             853 uspace/lib/cpp/include/__bits/adt/list.hpp                 size_ += other.size_;
other             857 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.head_ = nullptr;
other             858 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.size_ = 0;
other             861 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list&& other)
other             863 uspace/lib/cpp/include/__bits/adt/list.hpp                 splice(position, other);
other             866 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list& other, const_iterator it)
other             868 uspace/lib/cpp/include/__bits/adt/list.hpp                 if (&other == this)
other             885 uspace/lib/cpp/include/__bits/adt/list.hpp                 --other.size_;
other             888 uspace/lib/cpp/include/__bits/adt/list.hpp                 if (it.node() == other.head_)
other             889 uspace/lib/cpp/include/__bits/adt/list.hpp                     other.advance_head_();
other             892 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list&& other, const_iterator it)
other             894 uspace/lib/cpp/include/__bits/adt/list.hpp                 splice(position, other, it);
other             897 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list& other,
other             900 uspace/lib/cpp/include/__bits/adt/list.hpp                 if (&other == this || other.empty())
other             903 uspace/lib/cpp/include/__bits/adt/list.hpp                 if (first == other.begin() && last == other.end())
other             905 uspace/lib/cpp/include/__bits/adt/list.hpp                     splice(position, other);
other             913 uspace/lib/cpp/include/__bits/adt/list.hpp                 if (first == other.begin())
other             915 uspace/lib/cpp/include/__bits/adt/list.hpp                     other.head_ = last.node();
other             916 uspace/lib/cpp/include/__bits/adt/list.hpp                     other.head_->prev = first.node()->prev;
other             922 uspace/lib/cpp/include/__bits/adt/list.hpp                 else if (last == other.end())
other             925 uspace/lib/cpp/include/__bits/adt/list.hpp                     auto old_last = other.head_->prev;
other             926 uspace/lib/cpp/include/__bits/adt/list.hpp                     other.head_->prev = new_last;
other             927 uspace/lib/cpp/include/__bits/adt/list.hpp                     new_last->next = other.head_;
other             964 uspace/lib/cpp/include/__bits/adt/list.hpp                 other.size_ -= count;
other             967 uspace/lib/cpp/include/__bits/adt/list.hpp             void splice(const_iterator position, list&& other,
other             970 uspace/lib/cpp/include/__bits/adt/list.hpp                 splice(position, other, first, last);
other            1044 uspace/lib/cpp/include/__bits/adt/list.hpp             void merge(list& other)
other            1050 uspace/lib/cpp/include/__bits/adt/list.hpp             void merge(list&& other)
other            1052 uspace/lib/cpp/include/__bits/adt/list.hpp                 merge(other);
other            1056 uspace/lib/cpp/include/__bits/adt/list.hpp             void merge(list& other, Compare comp)
other            1063 uspace/lib/cpp/include/__bits/adt/list.hpp             void merge(list&& other, Compare comp)
other            1065 uspace/lib/cpp/include/__bits/adt/list.hpp                 merge(other, comp);
other             121 uspace/lib/cpp/include/__bits/adt/map.hpp             map(const map& other)
other             122 uspace/lib/cpp/include/__bits/adt/map.hpp                 : map{other, other.allocator_}
other             125 uspace/lib/cpp/include/__bits/adt/map.hpp             map(map&& other)
other             126 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{move(other.tree_)}, allocator_{move(other.allocator_)}
other             133 uspace/lib/cpp/include/__bits/adt/map.hpp             map(const map& other, const allocator_type& alloc)
other             134 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{other.tree_}, allocator_{alloc}
other             137 uspace/lib/cpp/include/__bits/adt/map.hpp             map(map&& other, const allocator_type& alloc)
other             138 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{move(other.tree_)}, allocator_{alloc}
other             163 uspace/lib/cpp/include/__bits/adt/map.hpp             map& operator=(const map& other)
other             165 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_ = other.tree_;
other             166 uspace/lib/cpp/include/__bits/adt/map.hpp                 allocator_ = other.allocator_;
other             171 uspace/lib/cpp/include/__bits/adt/map.hpp             map& operator=(map&& other)
other             175 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_ = move(other.tree_);
other             176 uspace/lib/cpp/include/__bits/adt/map.hpp                 allocator_ = move(other.allocator_);
other             493 uspace/lib/cpp/include/__bits/adt/map.hpp             void swap(map& other)
other             497 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_.swap(other.tree_);
other             498 uspace/lib/cpp/include/__bits/adt/map.hpp                 std::swap(allocator_, other.allocator_);
other             780 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(const multimap& other)
other             781 uspace/lib/cpp/include/__bits/adt/map.hpp                 : multimap{other, other.allocator_}
other             784 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(multimap&& other)
other             785 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{move(other.tree_)}, allocator_{move(other.allocator_)}
other             792 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(const multimap& other, const allocator_type& alloc)
other             793 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{other.tree_}, allocator_{alloc}
other             796 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(multimap&& other, const allocator_type& alloc)
other             797 uspace/lib/cpp/include/__bits/adt/map.hpp                 : tree_{move(other.tree_)}, allocator_{alloc}
other             822 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap& operator=(const multimap& other)
other             824 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_ = other.tree_;
other             825 uspace/lib/cpp/include/__bits/adt/map.hpp                 allocator_ = other.allocator_;
other             830 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap& operator=(multimap&& other)
other             834 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_ = move(other.tree_);
other             835 uspace/lib/cpp/include/__bits/adt/map.hpp                 allocator_ = move(other.allocator_);
other            1012 uspace/lib/cpp/include/__bits/adt/map.hpp             void swap(multimap& other)
other            1016 uspace/lib/cpp/include/__bits/adt/map.hpp                 tree_.swap(other.tree_);
other            1017 uspace/lib/cpp/include/__bits/adt/map.hpp                 std::swap(allocator_, other.allocator_);
other              95 uspace/lib/cpp/include/__bits/adt/queue.hpp             queue(const queue& other, const Alloc& alloc)
other              96 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{other.c, alloc}
other             103 uspace/lib/cpp/include/__bits/adt/queue.hpp             queue(queue&& other, const Alloc& alloc)
other             104 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : c{move(other.c), alloc}
other             158 uspace/lib/cpp/include/__bits/adt/queue.hpp             void swap(queue& other)
other             159 uspace/lib/cpp/include/__bits/adt/queue.hpp                 noexcept(noexcept(swap(c, other.c)))
other             161 uspace/lib/cpp/include/__bits/adt/queue.hpp                 std::swap(c, other.c);
other             284 uspace/lib/cpp/include/__bits/adt/queue.hpp             priority_queue(const priority_queue& other, const Alloc& alloc)
other             285 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{other.comp}, c{other.c, alloc}
other             292 uspace/lib/cpp/include/__bits/adt/queue.hpp             priority_queue(priority_queue&& other, const Alloc& alloc)
other             293 uspace/lib/cpp/include/__bits/adt/queue.hpp                 : comp{move(other.comp)}, c{move(other.c), alloc}
other             336 uspace/lib/cpp/include/__bits/adt/queue.hpp             void swap(priority_queue& other)
other             337 uspace/lib/cpp/include/__bits/adt/queue.hpp                 noexcept(noexcept(swap(c, other.c)) && noexcept(swap(comp, other.comp)))
other             339 uspace/lib/cpp/include/__bits/adt/queue.hpp                 std::swap(c, other.c);
other             340 uspace/lib/cpp/include/__bits/adt/queue.hpp                 std::swap(comp, other.comp);
other              68 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             rbtree(const rbtree& other)
other              69 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 : rbtree{other.key_compare_}
other              71 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 for (const auto& x: other)
other              75 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             rbtree(rbtree&& other)
other              76 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 : root_{other.root_}, size_{other.size_},
other              77 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                   key_compare_{move(other.key_compare_)},
other              78 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                   key_extractor_{move(other.key_extractor_)}
other              80 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 other.root_ = nullptr;
other              81 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 other.size_ = size_type{};
other              84 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             rbtree& operator=(const rbtree& other)
other              86 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 auto tmp{other};
other              92 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             rbtree& operator=(rbtree&& other)
other              94 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 rbtree tmp{move(other)};
other             233 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             void swap(rbtree& other)
other             237 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 std::swap(root_, other.root_);
other             238 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 std::swap(size_, other.size_);
other             239 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 std::swap(key_compare_, other.key_compare_);
other             240 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 std::swap(key_extractor_, other.key_extractor_);
other             301 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             bool is_eq_to(const rbtree& other) const
other             303 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 if (size_ != other.size())
other             307 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 auto it2 = other.begin();
other             313 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 return (it1 == end()) && (it2 == other.end());
other             196 uspace/lib/cpp/include/__bits/adt/rbtree_iterators.hpp             rbtree_const_iterator(const non_const_iterator_type& other)
other             197 uspace/lib/cpp/include/__bits/adt/rbtree_iterators.hpp                 : current_{other.node()}, end_{other.end()}
other             200 uspace/lib/cpp/include/__bits/adt/rbtree_iterators.hpp             rbtree_const_iterator& operator=(const non_const_iterator_type& other)
other             202 uspace/lib/cpp/include/__bits/adt/rbtree_iterators.hpp                 current_ = other.node();
other             203 uspace/lib/cpp/include/__bits/adt/rbtree_iterators.hpp                 end_ = other.end();
other             385 uspace/lib/cpp/include/__bits/adt/rbtree_node.hpp             void swap(rbtree_single_node* other)
other             387 uspace/lib/cpp/include/__bits/adt/rbtree_node.hpp                 utils::swap(this, other);
other             609 uspace/lib/cpp/include/__bits/adt/rbtree_node.hpp             void swap(rbtree_multi_node* other)
other             611 uspace/lib/cpp/include/__bits/adt/rbtree_node.hpp                 utils::swap(this, other);
other              97 uspace/lib/cpp/include/__bits/adt/set.hpp             set(const set& other)
other              98 uspace/lib/cpp/include/__bits/adt/set.hpp                 : set{other, other.allocator_}
other             101 uspace/lib/cpp/include/__bits/adt/set.hpp             set(set&& other)
other             102 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{move(other.tree_)}, allocator_{move(other.allocator_)}
other             109 uspace/lib/cpp/include/__bits/adt/set.hpp             set(const set& other, const allocator_type& alloc)
other             110 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{other.tree_}, allocator_{alloc}
other             113 uspace/lib/cpp/include/__bits/adt/set.hpp             set(set&& other, const allocator_type& alloc)
other             114 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{move(other.tree_)}, allocator_{alloc}
other             139 uspace/lib/cpp/include/__bits/adt/set.hpp             set& operator=(const set& other)
other             141 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_ = other.tree_;
other             142 uspace/lib/cpp/include/__bits/adt/set.hpp                 allocator_ = other.allocator_;
other             147 uspace/lib/cpp/include/__bits/adt/set.hpp             set& operator=(set&& other)
other             151 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_ = move(other.tree_);
other             152 uspace/lib/cpp/include/__bits/adt/set.hpp                 allocator_ = move(other.allocator_);
other             310 uspace/lib/cpp/include/__bits/adt/set.hpp             void swap(set& other)
other             314 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_.swap(other.tree_);
other             315 uspace/lib/cpp/include/__bits/adt/set.hpp                 std::swap(allocator_, other.allocator_);
other             578 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(const multiset& other)
other             579 uspace/lib/cpp/include/__bits/adt/set.hpp                 : multiset{other, other.allocator_}
other             582 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(multiset&& other)
other             583 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{move(other.tree_)}, allocator_{move(other.allocator_)}
other             590 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(const multiset& other, const allocator_type& alloc)
other             591 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{other.tree_}, allocator_{alloc}
other             594 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(multiset&& other, const allocator_type& alloc)
other             595 uspace/lib/cpp/include/__bits/adt/set.hpp                 : tree_{move(other.tree_)}, allocator_{alloc}
other             620 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset& operator=(const multiset& other)
other             622 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_ = other.tree_;
other             623 uspace/lib/cpp/include/__bits/adt/set.hpp                 allocator_ = other.allocator_;
other             628 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset& operator=(multiset&& other)
other             632 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_ = move(other.tree_);
other             633 uspace/lib/cpp/include/__bits/adt/set.hpp                 allocator_ = move(other.allocator_);
other             791 uspace/lib/cpp/include/__bits/adt/set.hpp             void swap(multiset& other)
other             795 uspace/lib/cpp/include/__bits/adt/set.hpp                 tree_.swap(other.tree_);
other             796 uspace/lib/cpp/include/__bits/adt/set.hpp                 std::swap(allocator_, other.allocator_);
other              81 uspace/lib/cpp/include/__bits/adt/stack.hpp             stack(const stack& other, const Alloc& alloc)
other              82 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{other.c, alloc}
other              86 uspace/lib/cpp/include/__bits/adt/stack.hpp             stack(stack&& other, const Alloc& alloc)
other              87 uspace/lib/cpp/include/__bits/adt/stack.hpp                 : c{move(other.c), alloc}
other             131 uspace/lib/cpp/include/__bits/adt/stack.hpp             void swap(stack& other) // We cannot use c in the noexcept :/
other             134 uspace/lib/cpp/include/__bits/adt/stack.hpp                 std::swap(c, other.c);
other             102 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(const unordered_map& other)
other             103 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : unordered_map{other, other.allocator_}
other             106 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(unordered_map&& other)
other             107 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{move(other.table_)}, allocator_{move(other.allocator_)}
other             114 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(const unordered_map& other, const allocator_type& alloc)
other             115 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{other.table_}, allocator_{alloc}
other             118 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(unordered_map&& other, const allocator_type& alloc)
other             119 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{move(other.table_)}, allocator_{alloc}
other             165 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map& operator=(const unordered_map& other)
other             167 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_ = other.table_;
other             168 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 allocator_ = other.allocator_;
other             173 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map& operator=(unordered_map&& other)
other             178 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_ = move(other.table_);
other             179 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 allocator_ = move(other.allocator_);
other             506 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             void swap(unordered_map& other)
other             511 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_.swap(other.table_);
other             512 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 std::swap(allocator_, other.allocator_);
other             777 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(const unordered_multimap& other)
other             778 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : unordered_multimap{other, other.allocator_}
other             781 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(unordered_multimap&& other)
other             782 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{move(other.table_)}, allocator_{move(other.allocator_)}
other             789 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(const unordered_multimap& other, const allocator_type& alloc)
other             790 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{other.table_}, allocator_{alloc}
other             793 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(unordered_multimap&& other, const allocator_type& alloc)
other             794 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 : table_{move(other.table_)}, allocator_{alloc}
other             842 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap& operator=(const unordered_multimap& other)
other             844 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_ = other.table_;
other             845 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 allocator_ = other.allocator_;
other             850 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap& operator=(unordered_multimap&& other)
other             855 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_ = move(other.table_);
other             856 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 allocator_ = move(other.allocator_);
other            1010 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             void swap(unordered_multimap& other)
other            1015 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 table_.swap(other.table_);
other            1016 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 std::swap(allocator_, other.allocator_);
other             107 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(const unordered_set& other)
other             108 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_set{other, other.allocator_}
other             111 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(unordered_set&& other)
other             112 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{move(other.table_)}, allocator_{move(other.allocator_)}
other             119 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(const unordered_set& other, const allocator_type& alloc)
other             120 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{other.table_}, allocator_{alloc}
other             123 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(unordered_set&& other, const allocator_type& alloc)
other             124 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{move(other.table_)}, allocator_{alloc}
other             170 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(const unordered_set& other)
other             172 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_ = other.table_;
other             173 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 allocator_ = other.allocator_;
other             178 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(unordered_set&& other)
other             183 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_ = move(other.table_);
other             184 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 allocator_ = move(other.allocator_);
other             319 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             void swap(unordered_set& other)
other             324 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_.swap(other.table_);
other             325 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 std::swap(allocator_, other.allocator_);
other             523 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(const unordered_multiset& other)
other             524 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : unordered_multiset{other, other.allocator_}
other             527 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(unordered_multiset&& other)
other             528 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{move(other.table_)}, allocator_{move(other.allocator_)}
other             535 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(const unordered_multiset& other, const allocator_type& alloc)
other             536 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{other.table_}, allocator_{alloc}
other             539 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(unordered_multiset&& other, const allocator_type& alloc)
other             540 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 : table_{move(other.table_)}, allocator_{alloc}
other             586 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset& operator=(const unordered_multiset& other)
other             588 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_ = other.table_;
other             589 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 allocator_ = other.allocator_;
other             594 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset& operator=(unordered_multiset&& other)
other             599 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_ = move(other.table_);
other             600 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 allocator_ = move(other.allocator_);
other             735 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             void swap(unordered_multiset& other)
other             740 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 table_.swap(other.table_);
other             741 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 std::swap(allocator_, other.allocator_);
other              96 uspace/lib/cpp/include/__bits/adt/vector.hpp             vector(const vector& other)
other              97 uspace/lib/cpp/include/__bits/adt/vector.hpp                 : data_{nullptr}, size_{other.size_}, capacity_{other.capacity_},
other              98 uspace/lib/cpp/include/__bits/adt/vector.hpp                   allocator_{other.allocator_}
other             103 uspace/lib/cpp/include/__bits/adt/vector.hpp                     data_[i] = other.data_[i];
other             106 uspace/lib/cpp/include/__bits/adt/vector.hpp             vector(vector&& other) noexcept
other             107 uspace/lib/cpp/include/__bits/adt/vector.hpp                 : data_{other.data_}, size_{other.size_}, capacity_{other.capacity_},
other             108 uspace/lib/cpp/include/__bits/adt/vector.hpp                   allocator_{move(other.allocator_)}
other             111 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.size_ = other.capacity_ = 0;
other             112 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.data_ = nullptr;
other             115 uspace/lib/cpp/include/__bits/adt/vector.hpp             vector(const vector& other, const Allocator& alloc)
other             116 uspace/lib/cpp/include/__bits/adt/vector.hpp                 : data_{nullptr}, size_{other.size_}, capacity_{other.capacity_},
other             122 uspace/lib/cpp/include/__bits/adt/vector.hpp                     data_[i] = other.data_[i];
other             143 uspace/lib/cpp/include/__bits/adt/vector.hpp             vector& operator=(const vector& other)
other             145 uspace/lib/cpp/include/__bits/adt/vector.hpp                 vector tmp{other};
other             151 uspace/lib/cpp/include/__bits/adt/vector.hpp             vector& operator=(vector&& other)
other             159 uspace/lib/cpp/include/__bits/adt/vector.hpp                 data_ = other.data_;
other             160 uspace/lib/cpp/include/__bits/adt/vector.hpp                 size_ = other.size_;
other             161 uspace/lib/cpp/include/__bits/adt/vector.hpp                 capacity_ = other.capacity_;
other             162 uspace/lib/cpp/include/__bits/adt/vector.hpp                 allocator_ = move(other.allocator_);
other             164 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.data_ = nullptr;
other             165 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.size_ = size_type{};
other             166 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.capacity_ = size_type{};
other             167 uspace/lib/cpp/include/__bits/adt/vector.hpp                 other.allocator_ = allocator_type{};
other             488 uspace/lib/cpp/include/__bits/adt/vector.hpp             void swap(vector& other)
other             492 uspace/lib/cpp/include/__bits/adt/vector.hpp                 std::swap(data_, other.data_);
other             493 uspace/lib/cpp/include/__bits/adt/vector.hpp                 std::swap(size_, other.size_);
other             494 uspace/lib/cpp/include/__bits/adt/vector.hpp                 std::swap(capacity_, other.capacity_);
other              73 uspace/lib/cpp/include/__bits/chrono.hpp             constexpr duration(const duration<Rep2, Period2>& other)
other              74 uspace/lib/cpp/include/__bits/chrono.hpp                 : rep_{duration_cast<duration>(other).count()}
other             222 uspace/lib/cpp/include/__bits/chrono.hpp             constexpr time_point(const time_point<clock, Duration2>& other)
other             223 uspace/lib/cpp/include/__bits/chrono.hpp                 : duration_{static_cast<duration>(other.time_since_epoch())}
other              49 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex& other)
other              50 uspace/lib/cpp/include/__bits/complex.hpp                 : real_{other.real_}, imag_{other.imag_}
other              54 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex<U>& other)
other              55 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
other             116 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const complex& other)
other             118 uspace/lib/cpp/include/__bits/complex.hpp                 real_ = other.real_;
other             119 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = other.imag_;
other             189 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex& other)
other             190 uspace/lib/cpp/include/__bits/complex.hpp                 : real_{other.real_}, imag_{other.imag_}
other             194 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex<U>& other)
other             195 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
other             256 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const complex& other)
other             258 uspace/lib/cpp/include/__bits/complex.hpp                 real_ = other.real_;
other             259 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = other.imag_;
other             329 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex& other)
other             330 uspace/lib/cpp/include/__bits/complex.hpp                 : real_{other.real_}, imag_{other.imag_}
other             334 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex<U>& other)
other             335 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
other             396 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const complex& other)
other             398 uspace/lib/cpp/include/__bits/complex.hpp                 real_ = other.real_;
other             399 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = other.imag_;
other             469 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex& other)
other             470 uspace/lib/cpp/include/__bits/complex.hpp                 : real_{other.real_}, imag_{other.imag_}
other             474 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const complex<U>& other)
other             475 uspace/lib/cpp/include/__bits/complex.hpp                 : real_(other.real()), imag_(other.imag())
other             536 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const complex& other)
other             538 uspace/lib/cpp/include/__bits/complex.hpp                 real_ = other.real_;
other             539 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = other.imag_;
other             155 uspace/lib/cpp/include/__bits/functional/bind.hpp                 constexpr bind_t(const bind_t& other) = default;
other             156 uspace/lib/cpp/include/__bits/functional/bind.hpp                 constexpr bind_t(bind_t&& other) = default;
other             118 uspace/lib/cpp/include/__bits/functional/function.hpp             function(const function& other)
other             119 uspace/lib/cpp/include/__bits/functional/function.hpp                 : callable_{}, callable_size_{other.callable_size_},
other             120 uspace/lib/cpp/include/__bits/functional/function.hpp                   call_{other.call_}, copy_{other.copy_}, dest_{other.dest_}
other             123 uspace/lib/cpp/include/__bits/functional/function.hpp                 (*copy_)(callable_, other.callable_);
other             126 uspace/lib/cpp/include/__bits/functional/function.hpp             function(function&& other)
other             127 uspace/lib/cpp/include/__bits/functional/function.hpp                 : callable_{other.callable_}, callable_size_{other.callable_size_},
other             128 uspace/lib/cpp/include/__bits/functional/function.hpp                   call_{other.call_}, copy_{other.copy_}, dest_{other.dest_}
other             130 uspace/lib/cpp/include/__bits/functional/function.hpp                 other.callable_ = nullptr;
other             131 uspace/lib/cpp/include/__bits/functional/function.hpp                 other.callable_size_ = size_t{};
other             132 uspace/lib/cpp/include/__bits/functional/function.hpp                 other.call_ = nullptr;
other             133 uspace/lib/cpp/include/__bits/functional/function.hpp                 other.copy_ = nullptr;
other             134 uspace/lib/cpp/include/__bits/functional/function.hpp                 other.dest_ = nullptr;
other             165 uspace/lib/cpp/include/__bits/functional/function.hpp             function(allocator_arg_t, const A& a, const function& other)
other             166 uspace/lib/cpp/include/__bits/functional/function.hpp                 : function{other}
other             170 uspace/lib/cpp/include/__bits/functional/function.hpp             function(allocator_arg_t, const A& a, function&& other)
other             171 uspace/lib/cpp/include/__bits/functional/function.hpp                 : function{move(other)}
other             250 uspace/lib/cpp/include/__bits/functional/function.hpp             void swap(function& other) noexcept
other             252 uspace/lib/cpp/include/__bits/functional/function.hpp                 std::swap(callable_, other.callable_);
other             253 uspace/lib/cpp/include/__bits/functional/function.hpp                 std::swap(callable_size_, other.callable_size_);
other             254 uspace/lib/cpp/include/__bits/functional/function.hpp                 std::swap(call_, other.call_);
other             255 uspace/lib/cpp/include/__bits/functional/function.hpp                 std::swap(copy_, other.copy_);
other             256 uspace/lib/cpp/include/__bits/functional/function.hpp                 std::swap(dest_, other.dest_);
other              55 uspace/lib/cpp/include/__bits/functional/reference_wrapper.hpp             reference_wrapper(const reference_wrapper& other) noexcept
other              56 uspace/lib/cpp/include/__bits/functional/reference_wrapper.hpp                 : data_{other.data_}
other              59 uspace/lib/cpp/include/__bits/functional/reference_wrapper.hpp             reference_wrapper& operator=(const reference_wrapper& other) noexcept
other              61 uspace/lib/cpp/include/__bits/functional/reference_wrapper.hpp                 data_ = other.data_;
other             102 uspace/lib/cpp/include/__bits/insert_iterator.hpp             bool operator==(const insert_iterator& other)
other             104 uspace/lib/cpp/include/__bits/insert_iterator.hpp                 return count_ == other.count_;
other             107 uspace/lib/cpp/include/__bits/insert_iterator.hpp             bool operator!=(const insert_iterator& other)
other             109 uspace/lib/cpp/include/__bits/insert_iterator.hpp                 return count_ != other.count_;
other              66 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_filebuf(basic_filebuf&& other)
other              67 uspace/lib/cpp/include/__bits/io/fstream.hpp                 : mode_{other.mode_}
other              70 uspace/lib/cpp/include/__bits/io/fstream.hpp                 std::swap(obuf_, other.obuf_);
other              71 uspace/lib/cpp/include/__bits/io/fstream.hpp                 std::swap(ibuf_, other.ibuf_);
other              72 uspace/lib/cpp/include/__bits/io/fstream.hpp                 std::swap(file_, other.file_);
other              74 uspace/lib/cpp/include/__bits/io/fstream.hpp                 basic_streambuf<char_type, traits_type>::swap(other);
other              89 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_filebuf& operator=(basic_filebuf&& other)
other              92 uspace/lib/cpp/include/__bits/io/fstream.hpp                 swap(other);
other             426 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_ifstream(basic_ifstream&& other)
other             427 uspace/lib/cpp/include/__bits/io/fstream.hpp                 : basic_istream<char_type, traits_type>{move(other)},
other             428 uspace/lib/cpp/include/__bits/io/fstream.hpp                   rdbuf_{other.rdbuf_}
other             439 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_ifstream& operator=(basic_ifstream&& other)
other             441 uspace/lib/cpp/include/__bits/io/fstream.hpp                 swap(other);
other             535 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_ofstream(basic_ofstream&& other)
other             536 uspace/lib/cpp/include/__bits/io/fstream.hpp                 : basic_ostream<char_type, traits_type>{move(other)},
other             537 uspace/lib/cpp/include/__bits/io/fstream.hpp                   rdbuf_{other.rdbuf_}
other             548 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_ofstream& operator=(basic_ofstream&& other)
other             550 uspace/lib/cpp/include/__bits/io/fstream.hpp                 swap(other);
other             646 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_fstream(basic_fstream&& other)
other             647 uspace/lib/cpp/include/__bits/io/fstream.hpp                 : basic_iostream<char_type, traits_type>{move(other)},
other             648 uspace/lib/cpp/include/__bits/io/fstream.hpp                   rdbuf_{other.rdbuf_}
other             659 uspace/lib/cpp/include/__bits/io/fstream.hpp             basic_fstream& operator=(basic_fstream&& other)
other             661 uspace/lib/cpp/include/__bits/io/fstream.hpp                 swap(other);
other             943 uspace/lib/cpp/include/__bits/io/istream.hpp             basic_iostream(basic_iostream&& other)
other             944 uspace/lib/cpp/include/__bits/io/istream.hpp                 : basic_istream<char_type, traits_type>(move(other))
other             947 uspace/lib/cpp/include/__bits/io/istream.hpp             basic_iostream& operator=(basic_iostream&& other)
other             949 uspace/lib/cpp/include/__bits/io/istream.hpp                 swap(other);
other             952 uspace/lib/cpp/include/__bits/io/istream.hpp             void swap(basic_iostream& other)
other             954 uspace/lib/cpp/include/__bits/io/istream.hpp                 basic_istream<char_type, traits_type>::swap(other);
other             482 uspace/lib/cpp/include/__bits/io/ostream.hpp             basic_ostream(basic_ostream&& other)
other             484 uspace/lib/cpp/include/__bits/io/ostream.hpp                 basic_ios<Char, Traits>::move(other);
other             493 uspace/lib/cpp/include/__bits/io/ostream.hpp             basic_ostream& operator=(basic_ostream&& other)
other             495 uspace/lib/cpp/include/__bits/io/ostream.hpp                 swap(other);
other              74 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_stringbuf(basic_stringbuf&& other)
other              75 uspace/lib/cpp/include/__bits/io/sstream.hpp                 : mode_{move(other.mode_)}, str_{move(other.str_)}
other              77 uspace/lib/cpp/include/__bits/io/sstream.hpp                 basic_streambuf<char_type, traits_type>::swap(other);
other              86 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_stringbuf& operator=(basic_stringbuf&& other)
other              88 uspace/lib/cpp/include/__bits/io/sstream.hpp                 swap(other);
other             321 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_istringstream(basic_istringstream&& other)
other             322 uspace/lib/cpp/include/__bits/io/sstream.hpp                 : basic_istream<char_type, traits_type>{move(other)},
other             323 uspace/lib/cpp/include/__bits/io/sstream.hpp                   sb_{move(other.sb_)}
other             334 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_istringstream& operator=(basic_istringstream&& other)
other             336 uspace/lib/cpp/include/__bits/io/sstream.hpp                 swap(other);
other             403 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_ostringstream(basic_ostringstream&& other)
other             404 uspace/lib/cpp/include/__bits/io/sstream.hpp                 : basic_ostream<char_type, traits_type>{move(other)},
other             405 uspace/lib/cpp/include/__bits/io/sstream.hpp                   sb_{move(other.sb_)}
other             416 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_ostringstream& operator=(basic_ostringstream&& other)
other             418 uspace/lib/cpp/include/__bits/io/sstream.hpp                 swap(other);
other             482 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_stringstream(basic_stringstream&& other)
other             483 uspace/lib/cpp/include/__bits/io/sstream.hpp                 : basic_iostream<char_type, traits_type>{move(other)},
other             484 uspace/lib/cpp/include/__bits/io/sstream.hpp                   sb_{move(other.sb_)}
other             495 uspace/lib/cpp/include/__bits/io/sstream.hpp             basic_stringstream& operator=(basic_stringstream&& other)
other             497 uspace/lib/cpp/include/__bits/io/sstream.hpp                 swap(other);
other             192 uspace/lib/cpp/include/__bits/iterator.hpp             reverse_iterator(const reverse_iterator<U>& other)
other             193 uspace/lib/cpp/include/__bits/iterator.hpp                 : current_{other.current_}
other             197 uspace/lib/cpp/include/__bits/iterator.hpp             reverse_iterator& operator=(const reverse_iterator<U>& other)
other             199 uspace/lib/cpp/include/__bits/iterator.hpp                 current_ = other.base();
other             560 uspace/lib/cpp/include/__bits/iterator.hpp             move_iterator(const move_iterator<U>& other)
other             561 uspace/lib/cpp/include/__bits/iterator.hpp                 : current_{other.current_}
other             565 uspace/lib/cpp/include/__bits/iterator.hpp             move_iterator& operator=(const move_iterator<U>& other)
other             567 uspace/lib/cpp/include/__bits/iterator.hpp                 current_ = other.current_;
other              79 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale(const locale& other) noexcept;
other              85 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale(const locale& other, const char* name, category);
other              87 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale(const locale& other, const string& name, category);
other              90 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale(const locale& other, Facet* f)
other              91 uspace/lib/cpp/include/__bits/locale/locale.hpp                 : name_{other.name_}
other              94 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale(const locale& other, const locale& one, category);
other              98 uspace/lib/cpp/include/__bits/locale/locale.hpp             const locale& operator=(const locale& other) noexcept;
other             101 uspace/lib/cpp/include/__bits/locale/locale.hpp             locale combine(const locale& other) const
other             103 uspace/lib/cpp/include/__bits/locale/locale.hpp                 return other;
other             108 uspace/lib/cpp/include/__bits/locale/locale.hpp             bool operator==(const locale& other) const;
other             109 uspace/lib/cpp/include/__bits/locale/locale.hpp             bool operator!=(const locale& other) const;
other             148 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 const shared_ptr<U>& other, element_type* ptr,
other             151 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : payload_{other.payload_}, data_{ptr}
other             157 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp             shared_ptr(const shared_ptr& other)
other             158 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : payload_{other.payload_}, data_{other.data_}
other             166 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 const shared_ptr<U>& other,
other             169 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : payload_{other.payload_}, data_{other.data_}
other             175 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp             shared_ptr(shared_ptr&& other)
other             176 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : payload_{move(other.payload_)}, data_{move(other.data_)}
other             178 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 other.payload_ = nullptr;
other             179 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 other.data_ = nullptr;
other             184 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 shared_ptr<U>&& other,
other             187 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : payload_{move(other.payload_)}, data_{move(other.data_)}
other             189 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 other.payload_ = nullptr;
other             190 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 other.data_ = nullptr;
other             195 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 const weak_ptr<U>& other,
other             200 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 if (other.expired())
other             203 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 if (other.payload_)
other             205 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                     payload_ = other.payload_->lock();
other             212 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 unique_ptr<U, D>&& other,
other             220 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 : shared_ptr{other.release(), other.get_deleter()}
other             295 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp             void swap(shared_ptr& other) noexcept
other             297 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 std::swap(payload_, other.payload_);
other             298 uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp                 std::swap(data_, other.data_);
other             198 uspace/lib/cpp/include/__bits/memory/type_getters.hpp     struct alloc_get_rebind_alloc<Alloc, T, void_t<typename Alloc::template rebind<T>::other>>
other             199 uspace/lib/cpp/include/__bits/memory/type_getters.hpp         : aux::type_is<typename Alloc::template rebind<T>::other>
other             114 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             unique_ptr(unique_ptr&& other)
other             115 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 : ptr_{move(other.ptr_)}, deleter_{forward<deleter_type>(other.deleter_)}
other             117 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 other.ptr_ = nullptr;
other             133 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             unique_ptr(unique_ptr<U, E>&& other) noexcept
other             134 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 : ptr_{move(other.ptr_)}, deleter_{forward<D>(other.deleter_)}
other             136 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 other.ptr_ = nullptr;
other             244 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             void swap(unique_ptr& other) noexcept
other             246 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 std::swap(ptr_, other.ptr_);
other             247 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 std::swap(deleter_, other.deleter_);
other             326 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             unique_ptr(unique_ptr&& other) noexcept
other             327 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 : ptr_{move(other.ptr_)}, deleter_{forward<deleter_type>(other.deleter_)}
other             329 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 other.ptr_ = nullptr;
other             341 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             unique_ptr(unique_ptr<U, E>&& other) noexcept
other             342 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 : ptr_{move(other.ptr_)}, deleter_{forward<D>(other.deleter_)}
other             344 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 other.ptr_ = nullptr;
other             456 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp             void swap(unique_ptr& other) noexcept
other             458 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 std::swap(ptr_, other.ptr_);
other             459 uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp                 std::swap(deleter_, other.deleter_);
other              61 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 const shared_ptr<U>& other,
other              64 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 : payload_{other.payload_}
other              70 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp             weak_ptr(const weak_ptr& other) noexcept
other              71 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 : payload_{other.payload_}
other              79 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 const weak_ptr<U>& other,
other              82 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 : payload_{other.payload_}
other              88 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp             weak_ptr(weak_ptr&& other) noexcept
other              89 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 : payload_{other.payload_}
other              91 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 other.payload_ = nullptr;
other              96 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 weak_ptr<U>&& other,
other              99 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 : payload_{other.payload_}
other             101 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 other.payload_ = nullptr;
other             165 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp             void swap(weak_ptr& other) noexcept
other             167 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 std::swap(payload_, other.payload_);
other             198 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp             bool owner_before(const shared_ptr<U>& other) const
other             200 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 return payload_ < other.payload_;
other             204 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp             bool owner_before(const weak_ptr<U>& other) const
other             206 uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp                 return payload_ < other.payload_;
other             110 uspace/lib/cpp/include/__bits/random.hpp             linear_congruential_engine(const linear_congruential_engine& other)
other             111 uspace/lib/cpp/include/__bits/random.hpp                 : state_{other.state_}
other             485 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(const basic_string& other)
other             486 uspace/lib/cpp/include/__bits/string/string.hpp                 : data_{}, size_{other.size_}, capacity_{other.capacity_},
other             487 uspace/lib/cpp/include/__bits/string/string.hpp                   allocator_{other.allocator_}
other             489 uspace/lib/cpp/include/__bits/string/string.hpp                 init_(other.data(), size_);
other             492 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(basic_string&& other)
other             493 uspace/lib/cpp/include/__bits/string/string.hpp                 : data_{other.data_}, size_{other.size_},
other             494 uspace/lib/cpp/include/__bits/string/string.hpp                   capacity_{other.capacity_}, allocator_{move(other.allocator_)}
other             496 uspace/lib/cpp/include/__bits/string/string.hpp                 other.data_ = nullptr;
other             497 uspace/lib/cpp/include/__bits/string/string.hpp                 other.size_ = 0;
other             498 uspace/lib/cpp/include/__bits/string/string.hpp                 other.capacity_ = 0;
other             501 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(const basic_string& other, size_type pos, size_type n = npos,
other             506 uspace/lib/cpp/include/__bits/string/string.hpp                 auto len = min(n, other.size() - pos);
other             507 uspace/lib/cpp/include/__bits/string/string.hpp                 init_(other.data() + pos, len);
other             557 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(const basic_string& other, const allocator_type& alloc)
other             558 uspace/lib/cpp/include/__bits/string/string.hpp                 : data_{}, size_{other.size_}, capacity_{other.capacity_}, allocator_{alloc}
other             560 uspace/lib/cpp/include/__bits/string/string.hpp                 init_(other.data(), size_);
other             563 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(basic_string&& other, const allocator_type& alloc)
other             564 uspace/lib/cpp/include/__bits/string/string.hpp                 : data_{other.data_}, size_{other.size_}, capacity_{other.capacity_}, allocator_{alloc}
other             566 uspace/lib/cpp/include/__bits/string/string.hpp                 other.data_ = nullptr;
other             567 uspace/lib/cpp/include/__bits/string/string.hpp                 other.size_ = 0;
other             568 uspace/lib/cpp/include/__bits/string/string.hpp                 other.capacity_ = 0;
other             576 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(const basic_string& other)
other             578 uspace/lib/cpp/include/__bits/string/string.hpp                 if (this != &other)
other             580 uspace/lib/cpp/include/__bits/string/string.hpp                     basic_string tmp{other};
other             587 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(basic_string&& other)
other             591 uspace/lib/cpp/include/__bits/string/string.hpp                 if (this != &other)
other             592 uspace/lib/cpp/include/__bits/string/string.hpp                     swap(other);
other             597 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(const value_type* other)
other             599 uspace/lib/cpp/include/__bits/string/string.hpp                 *this = basic_string{other};
other            1159 uspace/lib/cpp/include/__bits/string/string.hpp             void swap(basic_string& other)
other            1163 uspace/lib/cpp/include/__bits/string/string.hpp                 std::swap(data_, other.data_);
other            1164 uspace/lib/cpp/include/__bits/string/string.hpp                 std::swap(size_, other.size_);
other            1165 uspace/lib/cpp/include/__bits/string/string.hpp                 std::swap(capacity_, other.capacity_);
other            1436 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(const basic_string& other) const noexcept
other            1438 uspace/lib/cpp/include/__bits/string/string.hpp                 auto len = min(size(), other.size());
other            1439 uspace/lib/cpp/include/__bits/string/string.hpp                 auto comp = traits_type::compare(data_, other.data(), len);
other            1443 uspace/lib/cpp/include/__bits/string/string.hpp                 else if (size() == other.size())
other            1445 uspace/lib/cpp/include/__bits/string/string.hpp                 else if (size() > other.size())
other            1451 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(size_type pos, size_type n, const basic_string& other) const
other            1453 uspace/lib/cpp/include/__bits/string/string.hpp                 return basic_string{*this, pos, n}.compare(other);
other            1456 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(size_type pos1, size_type n1, const basic_string& other,
other            1459 uspace/lib/cpp/include/__bits/string/string.hpp                 return basic_string{*this, pos1, n1}.compare(basic_string{other, pos2, n2});
other            1462 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(const value_type* other) const
other            1464 uspace/lib/cpp/include/__bits/string/string.hpp                 return compare(basic_string(other));
other            1467 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(size_type pos, size_type n, const value_type* other) const
other            1469 uspace/lib/cpp/include/__bits/string/string.hpp                 return basic_string{*this, pos, n}.compare(basic_string{other});
other            1473 uspace/lib/cpp/include/__bits/string/string.hpp                         const value_type* other, size_type n2) const
other            1475 uspace/lib/cpp/include/__bits/string/string.hpp                 return basic_string{*this, pos, n1}.compare(basic_string{other, n2});
other             306 uspace/lib/cpp/include/__bits/thread/mutex.hpp             unique_lock(unique_lock&& other) noexcept
other             307 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 : mtx_{move(other.mtx_)}, owns_{move(other.owns_)}
other             309 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 other.mtx_ = nullptr;
other             310 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 other.owns_ = false;
other             313 uspace/lib/cpp/include/__bits/thread/mutex.hpp             unique_lock& operator=(unique_lock&& other)
other             318 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 mtx_ = move(other.mtx_);
other             319 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 owns_ = move(other.owns_);
other             321 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 other.mtx_ = nullptr;
other             322 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 other.owns_ = false;
other             396 uspace/lib/cpp/include/__bits/thread/mutex.hpp             void swap(unique_lock& other) noexcept
other             398 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 std::swap(mtx_, other.mtx_);
other             399 uspace/lib/cpp/include/__bits/thread/mutex.hpp                 std::swap(owns_, other.owns_);
other             141 uspace/lib/cpp/include/__bits/thread/packaged_task.hpp             void swap(packaged_task& other) noexcept
other             143 uspace/lib/cpp/include/__bits/thread/packaged_task.hpp                 std::swap(func_, other.func_);
other             144 uspace/lib/cpp/include/__bits/thread/packaged_task.hpp                 std::swap(state_, other.state_);
other              91 uspace/lib/cpp/include/__bits/thread/promise.hpp                 void swap(promise_base& other) noexcept
other              93 uspace/lib/cpp/include/__bits/thread/promise.hpp                     std::swap(state_, other.state_);
other             161 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp             shared_lock(shared_lock&& other) noexcept
other             162 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 : mtx_{move(other.mtx_)}, owns_{move(other.owns_)}
other             164 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 other.mtx_ = nullptr;
other             165 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 other.owns_ = false;
other             168 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp             shared_lock& operator=(shared_lock&& other)
other             173 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 mtx_ = move(other.mtx_);
other             174 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 owns_ = move(other.owns_);
other             176 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 other.mtx_ = nullptr;
other             177 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 other.owns_ = false;
other             251 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp             void swap(shared_lock& other) noexcept
other             253 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 std::swap(mtx_, other.mtx_);
other             254 uspace/lib/cpp/include/__bits/thread/shared_mutex.hpp                 std::swap(owns_, other.owns_);
other             159 uspace/lib/cpp/include/__bits/thread/thread.hpp             thread(thread&& other) noexcept;
other             160 uspace/lib/cpp/include/__bits/thread/thread.hpp             thread& operator=(thread&& other) noexcept;
other             166 uspace/lib/cpp/include/__bits/thread/thread.hpp             void swap(thread& other) noexcept;
other             377 uspace/lib/cpp/include/__bits/tuple/tuple.hpp             tuple& operator=(const tuple& other)
other             379 uspace/lib/cpp/include/__bits/tuple/tuple.hpp                 aux::tuple_ops<0, sizeof...(Ts) - 1>::assign_copy(*this, other);
other             384 uspace/lib/cpp/include/__bits/tuple/tuple.hpp             tuple& operator=(tuple&& other) noexcept(aux::tuple_noexcept_assignment<Ts...>::value)
other             386 uspace/lib/cpp/include/__bits/tuple/tuple.hpp                 aux::tuple_ops<0, sizeof...(Ts) - 1>::assign_move(*this, move(other));
other             392 uspace/lib/cpp/include/__bits/tuple/tuple.hpp             tuple& operator=(const tuple<Us...>& other)
other             394 uspace/lib/cpp/include/__bits/tuple/tuple.hpp                 aux::tuple_ops<0, sizeof...(Ts) - 1>::assign_copy(*this, other);
other             400 uspace/lib/cpp/include/__bits/tuple/tuple.hpp             tuple& operator=(tuple<Us...>&& other)
other             402 uspace/lib/cpp/include/__bits/tuple/tuple.hpp                 aux::tuple_ops<0, sizeof...(Ts) - 1>::assign_move(*this, move(other));
other             429 uspace/lib/cpp/include/__bits/tuple/tuple.hpp             void swap(tuple& other) noexcept(aux::tuple_noexcept_swap<Ts...>::value)
other             431 uspace/lib/cpp/include/__bits/tuple/tuple.hpp                 aux::tuple_ops<0, sizeof...(Ts) - 1>::swap(*this, other);
other             226 uspace/lib/cpp/include/__bits/utility/utility.hpp         constexpr pair(const pair<U, V>& other)
other             227 uspace/lib/cpp/include/__bits/utility/utility.hpp             : first(other.first), second(other.second)
other             231 uspace/lib/cpp/include/__bits/utility/utility.hpp         constexpr pair(pair<U, V>&& other)
other             232 uspace/lib/cpp/include/__bits/utility/utility.hpp             : first(forward<first_type>(other.first)),
other             233 uspace/lib/cpp/include/__bits/utility/utility.hpp               second(forward<second_type>(other.second))
other             242 uspace/lib/cpp/include/__bits/utility/utility.hpp         pair& operator=(const pair& other)
other             244 uspace/lib/cpp/include/__bits/utility/utility.hpp             first = other.first;
other             245 uspace/lib/cpp/include/__bits/utility/utility.hpp             second = other.second;
other             251 uspace/lib/cpp/include/__bits/utility/utility.hpp         pair& operator=(const pair<U, V>& other)
other             253 uspace/lib/cpp/include/__bits/utility/utility.hpp             first = other.first;
other             254 uspace/lib/cpp/include/__bits/utility/utility.hpp             second = other.second;
other             259 uspace/lib/cpp/include/__bits/utility/utility.hpp         pair& operator=(pair&& other) noexcept
other             261 uspace/lib/cpp/include/__bits/utility/utility.hpp             first = forward<first_type>(other.first);
other             262 uspace/lib/cpp/include/__bits/utility/utility.hpp             second = forward<second_type>(other.second);
other             268 uspace/lib/cpp/include/__bits/utility/utility.hpp         pair& operator=(pair<U, V>&& other)
other             270 uspace/lib/cpp/include/__bits/utility/utility.hpp             first = forward<first_type>(other.first);
other             271 uspace/lib/cpp/include/__bits/utility/utility.hpp             second = forward<second_type>(other.second);
other             276 uspace/lib/cpp/include/__bits/utility/utility.hpp         void swap(pair& other) noexcept(
other             277 uspace/lib/cpp/include/__bits/utility/utility.hpp             noexcept(std::swap(first, other.first)) &&
other             278 uspace/lib/cpp/include/__bits/utility/utility.hpp             noexcept(std::swap(second, other.second))
other             281 uspace/lib/cpp/include/__bits/utility/utility.hpp             std::swap(first, other.first);
other             282 uspace/lib/cpp/include/__bits/utility/utility.hpp             std::swap(second, other.second);
other              62 uspace/lib/cpp/src/__bits/test/adaptors.cpp                 priority_queue_iterator(const priority_queue_iterator& other)
other              63 uspace/lib/cpp/src/__bits/test/adaptors.cpp                     : queue_{other.queue_}, end_{other.end_}
other              47 uspace/lib/cpp/src/locale.cpp     locale::locale(const locale& other) noexcept
other              48 uspace/lib/cpp/src/locale.cpp         : name_{other.name_}
other              59 uspace/lib/cpp/src/locale.cpp     locale::locale(const locale& other, const char* name, category cat)
other              63 uspace/lib/cpp/src/locale.cpp     locale::locale(const locale& other, const string& name, category cat)
other              67 uspace/lib/cpp/src/locale.cpp     locale::locale(const locale& other, const locale& one, category cat)
other              68 uspace/lib/cpp/src/locale.cpp         : name_{other.name_}
other              71 uspace/lib/cpp/src/locale.cpp     const locale& locale::operator=(const locale& other) noexcept
other              73 uspace/lib/cpp/src/locale.cpp         name_ = other.name_;
other              83 uspace/lib/cpp/src/locale.cpp     bool locale::operator==(const locale& other) const
other              85 uspace/lib/cpp/src/locale.cpp         return (this == &other) || (name_ == other.name_);
other              88 uspace/lib/cpp/src/locale.cpp     bool locale::operator!=(const locale& other) const
other              90 uspace/lib/cpp/src/locale.cpp         return !(*this == other);
other              45 uspace/lib/cpp/src/stdexcept.cpp     logic_error::logic_error(const logic_error& other) noexcept
other              46 uspace/lib/cpp/src/stdexcept.cpp         : exception{other}, what_{::helenos::str_dup(other.what_)}
other              49 uspace/lib/cpp/src/stdexcept.cpp     logic_error& logic_error::operator=(const logic_error& other)
other              53 uspace/lib/cpp/src/stdexcept.cpp         what_ = ::helenos::str_dup(other.what_);
other              76 uspace/lib/cpp/src/stdexcept.cpp     domain_error::domain_error(const domain_error& other) noexcept
other              77 uspace/lib/cpp/src/stdexcept.cpp         : logic_error{other}
other              88 uspace/lib/cpp/src/stdexcept.cpp     invalid_argument::invalid_argument(const invalid_argument& other) noexcept
other              89 uspace/lib/cpp/src/stdexcept.cpp         : logic_error{other}
other             100 uspace/lib/cpp/src/stdexcept.cpp     length_error::length_error(const length_error& other) noexcept
other             101 uspace/lib/cpp/src/stdexcept.cpp         : logic_error{other}
other             112 uspace/lib/cpp/src/stdexcept.cpp     out_of_range::out_of_range(const out_of_range& other) noexcept
other             113 uspace/lib/cpp/src/stdexcept.cpp         : logic_error{other}
other             124 uspace/lib/cpp/src/stdexcept.cpp     runtime_error::runtime_error(const runtime_error& other) noexcept
other             125 uspace/lib/cpp/src/stdexcept.cpp         : exception{other}, what_{::helenos::str_dup(other.what_)}
other             128 uspace/lib/cpp/src/stdexcept.cpp     runtime_error& runtime_error::operator=(const runtime_error& other)
other             132 uspace/lib/cpp/src/stdexcept.cpp         what_ = ::helenos::str_dup(other.what_);
other             155 uspace/lib/cpp/src/stdexcept.cpp     range_error::range_error(const range_error& other) noexcept
other             156 uspace/lib/cpp/src/stdexcept.cpp         : runtime_error{other}
other             167 uspace/lib/cpp/src/stdexcept.cpp     overflow_error::overflow_error(const overflow_error& other) noexcept
other             168 uspace/lib/cpp/src/stdexcept.cpp         : runtime_error{other}
other             179 uspace/lib/cpp/src/stdexcept.cpp     underflow_error::underflow_error(const underflow_error& other) noexcept
other             180 uspace/lib/cpp/src/stdexcept.cpp         : runtime_error{other}
other              56 uspace/lib/cpp/src/thread.cpp     thread::thread(thread&& other) noexcept
other              57 uspace/lib/cpp/src/thread.cpp         : id_{other.id_}, joinable_wrapper_{other.joinable_wrapper_}
other              59 uspace/lib/cpp/src/thread.cpp         other.id_ = aux::thread_t{};
other              60 uspace/lib/cpp/src/thread.cpp         other.joinable_wrapper_ = nullptr;
other              63 uspace/lib/cpp/src/thread.cpp     thread& thread::operator=(thread&& other) noexcept
other              68 uspace/lib/cpp/src/thread.cpp         id_ = other.id_;
other              69 uspace/lib/cpp/src/thread.cpp         other.id_ = aux::thread_t{};
other              71 uspace/lib/cpp/src/thread.cpp         joinable_wrapper_ = other.joinable_wrapper_;
other              72 uspace/lib/cpp/src/thread.cpp         other.joinable_wrapper_ = nullptr;
other              77 uspace/lib/cpp/src/thread.cpp     void thread::swap(thread& other) noexcept
other              79 uspace/lib/cpp/src/thread.cpp         std::swap(id_, other.id_);
other              80 uspace/lib/cpp/src/thread.cpp         std::swap(joinable_wrapper_, other.joinable_wrapper_);
other              38 uspace/lib/cpp/src/typeinfo.cpp     bool type_info::operator==(const type_info& other) const noexcept
other              40 uspace/lib/cpp/src/typeinfo.cpp         return (this == &other) || ::strcmp(name(), other.name()) == 0;
other              43 uspace/lib/cpp/src/typeinfo.cpp     bool type_info::operator!=(const type_info& other) const noexcept
other              45 uspace/lib/cpp/src/typeinfo.cpp         return !(*this == other);
other              48 uspace/lib/cpp/src/typeinfo.cpp     bool type_info::before(const type_info& other) const noexcept
other              61 uspace/lib/cpp/src/typeinfo.cpp         return name() < other.name();
other              45 uspace/lib/posix/include/libc/context.h extern void context_swap(context_t *self, context_t *other);
HelenOS homepage, sources at GitHub