Lines Matching refs:mxImpl

331 , mxImpl( new AccessibleTableShapeImpl( maShapeTreeInfo ) )  in AccessibleTableShape()
350 mxImpl->init( this, xTable ); in Init()
429 …return mxImpl->mxTable.is() ? mxImpl->mxTable->getRowCount() * mxImpl->mxTable->getColumnCount() :… in getAccessibleChildCount()
438 return mxImpl->getAccessibleChild( i ); in getAccessibleChild()
458 mxImpl->dispose(); in disposing()
471 return mxImpl->mxTable.is() ? mxImpl->mxTable->getRowCount() : 0; in getAccessibleRowCount()
479 return mxImpl->mxTable.is() ? mxImpl->mxTable->getColumnCount() : 0; in getAccessibleColumnCount()
505 if( mxImpl->mxTable.is() ) in getAccessibleRowExtentAt()
507 …Reference< XMergeableCell > xCell( mxImpl->mxTable->getCellByPosition( nColumn, nRow ), UNO_QUERY … in getAccessibleRowExtentAt()
520 if( mxImpl->mxTable.is() ) in getAccessibleColumnExtentAt()
522 …Reference< XMergeableCell > xCell( mxImpl->mxTable->getCellByPosition( nColumn, nRow ), UNO_QUERY … in getAccessibleColumnExtentAt()
677 if( mxImpl->mxTable.is() ) in getAccessibleCellAt()
678 nChildIndex = mxImpl->mxTable->getColumnCount() * nRow + nColumn; in getAccessibleCellAt()
724 return mxImpl->mxTable.is() ? (nRow * mxImpl->mxTable->getColumnCount() + nColumn) : 0; in getAccessibleIndex()
733 mxImpl->getColumnAndRow( nChildIndex, nColumn, nRow ); in getAccessibleRow()
743 mxImpl->getColumnAndRow( nChildIndex, nColumn, nRow ); in getAccessibleColumn()
756 mxImpl->getColumnAndRow( nChildIndex, aPos.mnCol, aPos.mnRow ); in selectAccessibleChild()
782 mxImpl->getColumnAndRow( nChildIndex, aPos.mnCol, aPos.mnRow ); in isAccessibleChildSelected()
881 mxImpl->getColumnAndRow( nChildIndex, aPos.mnCol, aPos.mnRow ); in deselectAccessibleChild()
967 mxImpl->getColumnAndRow(nChildIndex, rnColumn, rnRow); in getColumnAndRow()
984 Reference< AccessibleCell > xAccCell = mxImpl->getAccessibleCell( xCell ); in selectionChanged()
1028 xAccCell = mxImpl->getAccessibleCell(Reference< XCell >( xCellRef.get() )); in GetActiveAccessibleCell()
1077 …if( (nCol >= 0) && (nRow >= 0) && mxImpl->mxTable.is() && (nCol < mxImpl->mxTable->getColumnCount(… in checkCellPosition()