Home | History | Annotate | Download | only in sensorservice

Lines Matching defs:base

126     typedef vec< vec<TYPE, R>, C > base;
141 mat(const mat& rhs) : base(rhs) { }
142 mat(const base& rhs) : base(rhs) { }
156 base::operator=(rhs);
160 mat& operator=(const base& rhs) {
161 base::operator=(rhs);
174 static_cast<const base&>(lhs),
175 static_cast<const base&>(rhs));
179 static_cast<const base&>(lhs),
180 static_cast<const base&>(rhs));
257 typedef vec<TYPE, R> base;
268 mat(const base& rhs) : base(rhs) { }
269 mat(const mat& rhs) : base(rhs) { }
271 mat& operator=(const mat& rhs) { base::operator=(rhs); return *this; }
272 mat& operator=(const base& rhs) { base::operator=(rhs); return *this; }
275 const base& operator[](size_t) const { return *this; }
276 base& operator[](size_t) { return *this; }
277 void operator << (const vec<TYPE, R>& rhs) { base::operator[](0) = rhs; }