Lines Matching refs:sal_Int32

97 …::sal_Int32 SAL_CALL DefaultGridDataModel::getRowCount() throw (::com::sun::star::uno::RuntimeExce…  in getRowCount()
104 …::sal_Int32 SAL_CALL DefaultGridDataModel::getColumnCount() throw (::com::sun::star::uno::RuntimeE… in getColumnCount()
111 …Data const & DefaultGridDataModel::impl_getCellData_throw( sal_Int32 const i_column, sal_Int32 con… in impl_getCellData_throw()
127 …DefaultGridDataModel::RowData& DefaultGridDataModel::impl_getRowDataAccess_throw( sal_Int32 const … in impl_getRowDataAccess_throw()
140 …ta& DefaultGridDataModel::impl_getCellDataAccess_throw( sal_Int32 const i_columnIndex, sal_Int32 c… in impl_getCellDataAccess_throw()
150 …Any SAL_CALL DefaultGridDataModel::getCellData( ::sal_Int32 i_column, ::sal_Int32 i_row ) throw (R… in getCellData()
157 …Any SAL_CALL DefaultGridDataModel::getCellToolTip( ::sal_Int32 i_column, ::sal_Int32 i_row ) throw… in getCellToolTip()
164 …Any SAL_CALL DefaultGridDataModel::getRowHeading( ::sal_Int32 i_row ) throw (RuntimeException, Ind… in getRowHeading()
175 …Sequence< Any > SAL_CALL DefaultGridDataModel::getRowData( ::sal_Int32 i_rowIndex ) throw (IndexOu… in getRowData()
187 …idDataModel::impl_insertRow( sal_Int32 const i_position, Any const & i_heading, Sequence< Any > co… in impl_insertRow()
218 …void SAL_CALL DefaultGridDataModel::insertRow( ::sal_Int32 i_index, const Any& i_heading, const Se… in insertRow()
229 sal_Int32 const columnCount = i_data.getLength(); in insertRow()
241 …void SAL_CALL DefaultGridDataModel::insertRows( ::sal_Int32 i_index, const Sequence< Any>& i_headi… in insertRows()
251 sal_Int32 const rowCount = i_headings.getLength(); in insertRows()
256 sal_Int32 maxColCount = 0; in insertRows()
257 for ( sal_Int32 row=0; row<rowCount; ++row ) in insertRows()
264 for ( sal_Int32 row=0; row<rowCount; ++row ) in insertRows()
280 …void SAL_CALL DefaultGridDataModel::removeRow( ::sal_Int32 i_rowIndex ) throw (IndexOutOfBoundsExc… in removeRow()
313 …void SAL_CALL DefaultGridDataModel::updateCellData( ::sal_Int32 i_columnIndex, ::sal_Int32 i_rowIn… in updateCellData()
327 … DefaultGridDataModel::updateRowData( const Sequence< ::sal_Int32 >& i_columnIndexes, ::sal_Int32 in updateRowData()
337 sal_Int32 const columnCount = i_columnIndexes.getLength(); in updateRowData()
341 for ( sal_Int32 col = 0; col < columnCount; ++col ) in updateRowData()
348 for ( sal_Int32 col = 0; col < columnCount; ++col ) in updateRowData()
350 sal_Int32 const columnIndex = i_columnIndexes[ col ]; in updateRowData()
357sal_Int32 const firstAffectedColumn = *::std::min_element( stl_begin( i_columnIndexes ), stl_end( … in updateRowData()
358sal_Int32 const lastAffectedColumn = *::std::max_element( stl_begin( i_columnIndexes ), stl_end( i… in updateRowData()
367 …void SAL_CALL DefaultGridDataModel::updateRowHeading( ::sal_Int32 i_rowIndex, const Any& i_heading… in updateRowHeading()
384 …void SAL_CALL DefaultGridDataModel::updateCellToolTip( ::sal_Int32 i_columnIndex, ::sal_Int32 i_ro… in updateCellToolTip()
391 …void SAL_CALL DefaultGridDataModel::updateRowToolTip( ::sal_Int32 i_rowIndex, const Any& i_value )… in updateRowToolTip()