Lines Matching defs:row
35 void SetEntry(int32_t row, int32_t col, double value);
62 // Make sure that the value of row is less than 3 and col is less than 3.
63 inline double operator()(int32_t row, int32_t col) const
65 return matrix3X3_[row][col];
103 bool SetEntry(int32_t row, int32_t col, double value);
128 // Make sure that the value of row is less than 3 and col is less than columns.
129 inline double operator()(int32_t row, int32_t col) const
131 return Matrix3n_[row][col];
170 bool SetEntry(int32_t row, int32_t col, double value);
192 // Make sure that the value of row is less than rows and col is less than 3.
193 inline double operator()(int32_t row, int32_t col) const
195 return Matrixn3_[row][col];