Lines Matching refs:other
79 vector_iterator( const vector_iterator<vector_type, typename vector_type::value_type>& other ) in vector_iterator() argument
80 : my_vector(other.my_vector), my_index(other.my_index), my_item(other.my_item) in vector_iterator()
83 …terator& operator=( const vector_iterator<vector_type, typename vector_type::value_type>& other ) {
84 my_vector = other.my_vector;
85 my_index = other.my_index;
86 my_item = other.my_item;
319 concurrent_vector( const concurrent_vector& other ) in concurrent_vector() argument
320 …: base_type(segment_table_allocator_traits::select_on_container_copy_construction(other.get_alloca… in concurrent_vector()
323 grow_by(other.begin(), other.end()); in concurrent_vector()
329 concurrent_vector( const concurrent_vector& other, const allocator_type& alloc ) in concurrent_vector() argument
330 : base_type(other, alloc) {} in concurrent_vector()
332 concurrent_vector(concurrent_vector&& other) noexcept in concurrent_vector() argument
333 : base_type(std::move(other)) in concurrent_vector()
336 concurrent_vector( concurrent_vector&& other, const allocator_type& alloc ) in concurrent_vector() argument
337 : base_type(std::move(other), alloc) in concurrent_vector()
348 concurrent_vector& operator=( const concurrent_vector& other ) {
349 base_type::operator=(other);
353 concurrent_vector& operator=( concurrent_vector&& other ) noexcept(is_noexcept_assignment) { in noexcept()
354 base_type::operator=(std::move(other)); in noexcept()
522 void swap(concurrent_vector& other) noexcept(is_noexcept_swap) { in swap() argument
523 base_type::swap(other); in swap()