Home
last modified time | relevance | path

Searched refs:i_row (Results 1 – 9 of 9) sorted by relevance

/trunk/main/toolkit/source/controls/grid/
H A Ddefaultgriddatamodel.cxx111 …faultGridDataModel::impl_getCellData_throw( sal_Int32 const i_column, sal_Int32 const i_row ) const in impl_getCellData_throw()
113 if ( ( i_row < 0 ) || ( size_t( i_row ) > m_aData.size() ) in impl_getCellData_throw()
118 RowData const & rRow( m_aData[ i_row ] ); in impl_getCellData_throw()
150 …Any SAL_CALL DefaultGridDataModel::getCellData( ::sal_Int32 i_column, ::sal_Int32 i_row ) throw (R… in getCellData() argument
153 return impl_getCellData_throw( i_column, i_row ).first; in getCellData()
157 …Any SAL_CALL DefaultGridDataModel::getCellToolTip( ::sal_Int32 i_column, ::sal_Int32 i_row ) throw… in getCellToolTip() argument
160 return impl_getCellData_throw( i_column, i_row ).second; in getCellToolTip()
164 …Any SAL_CALL DefaultGridDataModel::getRowHeading( ::sal_Int32 i_row ) throw (RuntimeException, Ind… in getRowHeading() argument
168 if ( ( i_row < 0 ) || ( size_t( i_row ) >= m_aRowHeaders.size() ) ) in getRowHeading()
171 return m_aRowHeaders[ i_row ]; in getRowHeading()
/trunk/main/svtools/source/table/
H A Dtablecontrol_impl.hxx221 ::rtl::OUString getCellContentAsString( RowPos const i_row, ColPos const i_col );
240 void invalidateRow( RowPos const i_row ) { invalidateRowRange( i_row, i_row ); } in invalidateRow() argument
292 virtual bool activateCell( ColPos const i_col, RowPos const i_row );
305 virtual bool isRowSelected( RowPos i_row ) const;
H A Dtablecontrol_impl.cxx226 …virtual void getCellContent( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any& o… in getCellContent() argument
228 (void)i_row; in getCellContent()
2109 bool TableControl_Impl::activateCell( ColPos const i_col, RowPos const i_row ) in activateCell() argument
2112 return goTo( i_col, i_row ); in activateCell()
2309 …::rtl::OUString TableControl_Impl::getCellContentAsString( RowPos const i_row, ColPos const i_col ) in getCellContentAsString() argument
2312 m_pModel->getCellContent( i_col, i_row, aCellValue ); in getCellContentAsString()
2315 … m_pModel->getRenderer()->GetFormattedCellString( aCellValue, i_col, i_row, sCellStringContent ); in getCellContentAsString()
2479 bool TableControl_Impl::isRowSelected( RowPos i_row ) const in isRowSelected()
2481 …return ::std::find( m_aSelectedRows.begin(), m_aSelectedRows.end(), i_row ) != m_aSelectedRows.end… in isRowSelected()
H A Dtablegeometry.cxx71 bool TableRowGeometry::impl_isValidRow( RowPos const i_row ) const in impl_isValidRow()
73 return m_bAllowVirtualRows || ( i_row < m_rControl.m_pModel->getRowCount() ); in impl_isValidRow()
H A Dtablegeometry.hxx93 bool impl_isValidRow( RowPos const i_row ) const;
/trunk/main/svtools/inc/svtools/table/
H A Dtablecontrolinterface.hxx110 TableCell( ColPos const i_column, RowPos const i_row ) in TableCell()
112 ,nRow( i_row ) in TableCell()
209 virtual bool activateCell( ColPos const i_col, RowPos const i_row ) = 0;
H A Dtablemodel.hxx431 …virtual void getCellContent( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any& o…
448 …virtual void getCellToolTip( ColPos const i_col, RowPos const i_row, ::com::sun::star::uno::Any & …
/trunk/main/svtools/source/uno/
H A Dunocontroltablemodel.cxx529 …void UnoControlTableModel::getCellContent( ColPos const i_col, RowPos const i_row, Any& o_cellCont… in getCellContent() argument
559 o_cellContent = xDataModel->getCellData( nDataColumnIndex, i_row ); in getCellContent()
569 …void UnoControlTableModel::getCellToolTip( ColPos const i_col, RowPos const i_row, Any& o_cellTool… in getCellToolTip() argument
577 o_cellToolTip = xDataModel->getCellToolTip( i_col, i_row ); in getCellToolTip()
H A Dunocontroltablemodel.hxx82 … getCellContent( ColPos const i_col, RowPos const i_row, ::com::sun::star:…
83 … getCellToolTip( ColPos const i_col, RowPos const i_row, ::com::sun::star:…

Completed in 109 milliseconds