Lines Matching defs:index
50 // Make sure that the value of index is less than 3.
51 inline std::vector<double>& operator[](int32_t index)
53 return matrix3X3_[index];
56 // Make sure that the value of index is less than 3.
57 inline const std::vector<double>& operator[](int32_t index) const
59 return matrix3X3_[index];
116 // Make sure that the value of index is less than 3.
117 inline std::vector<double>& operator[](int32_t index)
119 return Matrix3n_[index];
122 // Make sure that the value of index is less than 3.
123 inline const std::vector<double>& operator[](int32_t index) const
125 return Matrix3n_[index];
180 // Make sure that the value of index is less than rows.
181 inline std::vector<double>& operator[](int32_t index)
183 return Matrixn3_[index];
186 // Make sure that the value of index is less than rows.
187 inline const std::vector<double>& operator[](int32_t index) const
189 return Matrixn3_[index];