Lines Matching refs:row
68 void SetEntry(int32_t row, int32_t col, double value);
82 inline double Get(int32_t row, int32_t col) const in Get() argument
84 ACE_DCHECK((unsigned)row < DIMENSION); in Get()
86 return matrix4x4_[col][row]; in Get()
88 inline void Set(int32_t row, int32_t col, double value) in Set() argument
90 ACE_DCHECK((unsigned)row < DIMENSION); in Set()
92 matrix4x4_[col][row] = value; in Set()
107 double operator()(int32_t row, int32_t col) const;
130 bool SetEntry(int32_t row, int32_t col, double value);
156 inline double operator()(int32_t row, int32_t col) const in operator()
158 return matrix4n_[row][col]; in operator()
187 bool SetEntry(int32_t row, int32_t col, double value);
210 inline double operator()(int32_t row, int32_t col) const in operator()
212 return matrixn4_[row][col]; in operator()