Lines Matching defs:row
68 void SetEntry(int32_t row, int32_t col, double value);
82 inline double Get(int32_t row, int32_t col) const
84 ACE_DCHECK((unsigned)row < DIMENSION);
86 return matrix4x4_[col][row];
88 inline void Set(int32_t row, int32_t col, double value)
90 ACE_DCHECK((unsigned)row < DIMENSION);
92 matrix4x4_[col][row] = value;
107 double operator()(int32_t row, int32_t col) const;
130 bool SetEntry(int32_t row, int32_t col, double value);
155 // Make sure that the value of row is less than 4 and col is less than columns.
156 inline double operator()(int32_t row, int32_t col) const
158 return matrix4n_[row][col];
187 bool SetEntry(int32_t row, int32_t col, double value);
209 // Make sure that the value of row is less than rows and col is less than 4.
210 inline double operator()(int32_t row, int32_t col) const
212 return matrixn4_[row][col];