Lines Matching refs:xCell

67 	std::size_t operator()( const Reference< XCell >& xCell ) const  in operator ()()
69 return std::size_t( xCell.get() ); in operator ()()
102 Reference< AccessibleCell > getAccessibleCell (Reference< XCell > xCell);
155 Reference< AccessibleCell > AccessibleTableShapeImpl::getAccessibleCell (Reference< XCell > xCell) in getAccessibleCell() argument
157 AccessibleCellMap::iterator iter( maChildMap.find( xCell ) ); in getAccessibleCell()
173 Reference< XCell > xCell( mxTable->getCellByPosition( nColumn, nRow ) ); in getAccessibleChild() local
174 AccessibleCellMap::iterator iter( maChildMap.find( xCell ) ); in getAccessibleChild()
183 CellRef xCellRef( dynamic_cast< Cell* >( xCell.get() ) ); in getAccessibleChild()
188 maChildMap[xCell] = xAccessibleCell; in getAccessibleChild()
247 Reference< XCell > xCell( mxTable->getCellByPosition( nCol, nRow ) ); in modified() local
248 AccessibleCellMap::iterator iter( aTempChildMap.find( xCell ) ); in modified()
282 maChildMap[xCell] = xAccessibleCell; in modified()
288 CellRef xCellRef( dynamic_cast< Cell* >( xCell.get() ) ); in modified()
293 maChildMap[xCell] = xAccessibleCell; in modified()
507 …Reference< XMergeableCell > xCell( mxImpl->mxTable->getCellByPosition( nColumn, nRow ), UNO_QUERY … in getAccessibleRowExtentAt() local
508 if( xCell.is() ) in getAccessibleRowExtentAt()
509 return xCell->getRowSpan(); in getAccessibleRowExtentAt()
522 …Reference< XMergeableCell > xCell( mxImpl->mxTable->getCellByPosition( nColumn, nRow ), UNO_QUERY … in getAccessibleColumnExtentAt() local
523 if( xCell.is() ) in getAccessibleColumnExtentAt()
524 return xCell->getColumnSpan(); in getAccessibleColumnExtentAt()
981 Reference< XCell > xCell(rEvent.Source, UNO_QUERY); in selectionChanged() local
982 if (xCell.is()) in selectionChanged()
984 Reference< AccessibleCell > xAccCell = mxImpl->getAccessibleCell( xCell ); in selectionChanged()