Lines Matching defs:index
45 // Make sure that the value of index is less than 3.
46 inline std::vector<double>& operator[](int32_t index)
48 return matrix3X3_[index];
51 // Make sure that the value of index is less than 3.
52 inline const std::vector<double>& operator[](int32_t index) const
54 return matrix3X3_[index];
109 // Make sure that the value of index is less than 3.
110 inline std::vector<double>& operator[](int32_t index)
112 return Matrix3n_[index];
115 // Make sure that the value of index is less than 3.
116 inline const std::vector<double>& operator[](int32_t index) const
118 return Matrix3n_[index];
171 // Make sure that the value of index is less than rows.
172 inline std::vector<double>& operator[](int32_t index)
174 return Matrixn3_[index];
177 // Make sure that the value of index is less than rows.
178 inline const std::vector<double>& operator[](int32_t index) const
180 return Matrixn3_[index];