Lines Matching refs:nChildIndex
158 sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleRow( sal_Int32 nChildIndex ) in getAccessibleRow() argument
164 ensureIsValidIndex( nChildIndex ); in getAccessibleRow()
165 return implGetRow( nChildIndex ); in getAccessibleRow()
168 sal_Int32 SAL_CALL AccessibleGridControlTableBase::getAccessibleColumn( sal_Int32 nChildIndex ) in getAccessibleColumn() argument
174 ensureIsValidIndex( nChildIndex ); in getAccessibleColumn()
175 return implGetColumn( nChildIndex ); in getAccessibleColumn()
224 sal_Int32 AccessibleGridControlTableBase::implGetRow( sal_Int32 nChildIndex ) const in implGetRow()
227 return nColumns ? (nChildIndex / nColumns) : 0; in implGetRow()
230 sal_Int32 AccessibleGridControlTableBase::implGetColumn( sal_Int32 nChildIndex ) const in implGetColumn()
233 return nColumns ? (nChildIndex % nColumns) : 0; in implGetColumn()
274 void AccessibleGridControlTableBase::ensureIsValidIndex( sal_Int32 nChildIndex ) in ensureIsValidIndex() argument
277 if( nChildIndex >= implGetChildCount() ) in ensureIsValidIndex()