Lines Matching defs:index
81 double operator[](int32_t index) const;
143 // Make sure that the value of index is less than 4.
144 inline std::vector<double>& operator[](int32_t index)
146 return matrix4n_[index];
149 // Make sure that the value of index is less than 4.
150 inline const std::vector<double>& operator[](int32_t index) const
152 return matrix4n_[index];
197 // Make sure that the value of index is less than rows.
198 inline std::vector<double>& operator[](int32_t index)
200 return matrixn4_[index];
203 // Make sure that the value of index is less than rows.
204 inline const std::vector<double>& operator[](int32_t index) const
206 return matrixn4_[index];