Lines Matching refs:dchecked_vector
37 class dchecked_vector : private std::vector<T, Alloc> {
58 dchecked_vector() in dchecked_vector() function
60 explicit dchecked_vector(const allocator_type& alloc) in dchecked_vector() function
62 explicit dchecked_vector(size_type n, const allocator_type& alloc = allocator_type())
64 dchecked_vector(size_type n,
69 dchecked_vector(InputIterator first,
73 dchecked_vector(const dchecked_vector& src) in dchecked_vector() function
75 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector() function
77 dchecked_vector(dchecked_vector&& src) in dchecked_vector() function
79 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector() function
81 dchecked_vector(std::initializer_list<value_type> il,
84 ~dchecked_vector() = default;
85 dchecked_vector& operator=(const dchecked_vector& src) {
89 dchecked_vector& operator=(dchecked_vector&& src) {
93 dchecked_vector& operator=(std::initializer_list<value_type> il) {
147 void swap(dchecked_vector& other) { Base::swap(other); } in swap()
196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) { in swap()
202 bool operator==(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {
206 bool operator!=(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {
210 bool operator<(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {
214 bool operator<=(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {
218 bool operator>(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {
222 bool operator>=(const dchecked_vector<T, Alloc>& lhs, const dchecked_vector<T, Alloc>& rhs) {