Lines Matching refs:i_columnIndex

479 …bool SortableGridDataModel::impl_reIndex_nothrow( ::sal_Int32 const i_columnIndex, sal_Bool const …  in impl_reIndex_nothrow()  argument
491 aColumnData[ rowIndex ] = m_delegator->getCellData( i_columnIndex, rowIndex ); in impl_reIndex_nothrow()
525 …void SAL_CALL SortableGridDataModel::sortByColumn( ::sal_Int32 i_columnIndex, ::sal_Bool i_sortAsc… in sortByColumn() argument
530 if ( ( i_columnIndex < 0 ) || ( i_columnIndex >= getColumnCount() ) ) in sortByColumn()
533 if ( !impl_reIndex_nothrow( i_columnIndex, i_sortAscending ) ) in sortByColumn()
536 m_currentSortColumn = i_columnIndex; in sortByColumn()
659 …void SAL_CALL SortableGridDataModel::updateCellData( ::sal_Int32 i_columnIndex, ::sal_Int32 i_rowI… in updateCellData() argument
668 delegator->updateCellData( i_columnIndex, rowIndex, i_value ); in updateCellData()
698 …void SAL_CALL SortableGridDataModel::updateCellToolTip( ::sal_Int32 i_columnIndex, ::sal_Int32 i_r… in updateCellToolTip() argument
707 delegator->updateCellToolTip( i_columnIndex, rowIndex, i_value ); in updateCellToolTip()
758 …Any SAL_CALL SortableGridDataModel::getCellData( ::sal_Int32 i_columnIndex, ::sal_Int32 i_rowIndex… in getCellData() argument
767 return delegator->getCellData( i_columnIndex, rowIndex ); in getCellData()
771 …Any SAL_CALL SortableGridDataModel::getCellToolTip( ::sal_Int32 i_columnIndex, ::sal_Int32 i_rowIn… in getCellToolTip() argument
780 return delegator->getCellToolTip( i_columnIndex, rowIndex ); in getCellToolTip()