Lines Matching refs:nChildIndex
154 sal_Int32 SAL_CALL AccessibleBrowseBoxTableBase::getAccessibleRow( sal_Int32 nChildIndex ) in getAccessibleRow() argument
160 ensureIsValidIndex( nChildIndex ); in getAccessibleRow()
161 return implGetRow( nChildIndex ); in getAccessibleRow()
164 sal_Int32 SAL_CALL AccessibleBrowseBoxTableBase::getAccessibleColumn( sal_Int32 nChildIndex ) in getAccessibleColumn() argument
170 ensureIsValidIndex( nChildIndex ); in getAccessibleColumn()
171 return implGetColumn( nChildIndex ); in getAccessibleColumn()
254 sal_Int32 AccessibleBrowseBoxTableBase::implGetRow( sal_Int32 nChildIndex ) const in implGetRow()
257 return nColumns ? (nChildIndex / nColumns) : 0; in implGetRow()
260 sal_Int32 AccessibleBrowseBoxTableBase::implGetColumn( sal_Int32 nChildIndex ) const in implGetColumn()
263 return nColumns ? (nChildIndex % nColumns) : 0; in implGetColumn()
338 void AccessibleBrowseBoxTableBase::ensureIsValidIndex( sal_Int32 nChildIndex ) in ensureIsValidIndex() argument
341 if( nChildIndex >= implGetChildCount() ) in ensureIsValidIndex()