Lines Matching refs:operator
85 dchecked_vector& operator=(const dchecked_vector& src) {
86 Base::operator=(src);
89 dchecked_vector& operator=(dchecked_vector&& src) {
90 Base::operator=(std::move(src));
93 dchecked_vector& operator=(std::initializer_list<value_type> il) {
94 Base::operator=(il);
122 reference operator[](size_type n) {
124 return Base::operator[](n);
126 const_reference operator[](size_type n) const {
128 return Base::operator[](n);
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) {