Lines Matching refs:mnWidth
110 inline explicit Matrix() : mnWidth( 0 ) {} in Matrix()
117 inline size_type width() const { return mnWidth; } in width()
123 …inline void resize( size_type nWidth, size_type nHeight ) { mnWidth = nWidth; maData.resiz… in resize()
124 … resize( size_type nWidth, size_type nHeight, const_reference rData ) { mnWidth = nWidth; maData.… in resize()
126 …inline iterator at( size_type nX, size_type nY ) { return maData.begin() + mnWidth * nY + nX; } in at()
127 …inline const_iterator at( size_type nX, size_type nY ) const { return maData.begin() + mnWidth * n… in at()
144 inline iterator row_end( size_type nY ) { return this->at( mnWidth, nY ); } in row_end()
145 inline const_iterator row_end( size_type nY ) const { return this->at( mnWidth, nY ); } in row_end()
149 inline reference row_back( size_type nY ) { return (*this)( mnWidth - 1, nY ); } in row_back()
150 inline const_reference row_back( size_type nY ) const { return (*this)( mnWidth - 1, nY ); } in row_back()
156 size_type mnWidth; member in oox::Matrix