Lines Matching refs:col
62 void SetEntry(int32_t row, int32_t col, double value);
76 inline double Get(int32_t row, int32_t col) const in Get() argument
79 ACE_DCHECK((unsigned)col < DIMENSION); in Get()
80 return matrix4x4_[col][row]; in Get()
82 inline void Set(int32_t row, int32_t col, double value) in Set() argument
85 ACE_DCHECK((unsigned)col < DIMENSION); in Set()
86 matrix4x4_[col][row] = value; in Set()
101 double operator()(int32_t row, int32_t col) const;
124 bool SetEntry(int32_t row, int32_t col, double value);
150 inline double operator()(int32_t row, int32_t col) const in operator()
152 return matrix4n_[row][col]; in operator()
181 bool SetEntry(int32_t row, int32_t col, double value);
204 inline double operator()(int32_t row, int32_t col) const in operator()
206 return matrixn4_[row][col]; in operator()