Lines Matching refs:nIndex

260 sal_Bool VCLXAccessibleEdit::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsExcepti…  in doAccessibleAction()  argument
264 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) in doAccessibleAction()
280 ::rtl::OUString VCLXAccessibleEdit::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (Inde… in getAccessibleActionDescription() argument
284 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) in getAccessibleActionDescription()
293 …eyBinding > VCLXAccessibleEdit::getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (IndexOutO… in getAccessibleActionKeyBinding() argument
297 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) in getAccessibleActionKeyBinding()
314 sal_Bool VCLXAccessibleEdit::setCaretPosition( sal_Int32 nIndex ) throw (IndexOutOfBoundsException,… in setCaretPosition() argument
316 return setSelection( nIndex, nIndex ); in setCaretPosition()
321 sal_Unicode VCLXAccessibleEdit::getCharacter( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, … in getCharacter() argument
325 return VCLXAccessibleTextComponent::getCharacter( nIndex ); in getCharacter()
330 Sequence< PropertyValue > VCLXAccessibleEdit::getCharacterAttributes( sal_Int32 nIndex, const Seque… in getCharacterAttributes() argument
334 return VCLXAccessibleTextComponent::getCharacterAttributes( nIndex, aRequestedAttributes ); in getCharacterAttributes()
339 awt::Rectangle VCLXAccessibleEdit::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsEx… in getCharacterBounds() argument
346 if ( !implIsValidRange( nIndex, nIndex, nLength ) ) in getCharacterBounds()
352 if ( nIndex == nLength ) in getCharacterBounds()
373 aBounds = AWTRectangle( pControl->GetCharacterBounds( nIndex ) ); in getCharacterBounds()
468 ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextAtIndex( sal_Int32 nIndex, … in getTextAtIndex() argument
472 return VCLXAccessibleTextComponent::getTextAtIndex( nIndex, aTextType ); in getTextAtIndex()
477 …ssibility::TextSegment VCLXAccessibleEdit::getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextTy… in getTextBeforeIndex() argument
481 return VCLXAccessibleTextComponent::getTextBeforeIndex( nIndex, aTextType ); in getTextBeforeIndex()
486 …ssibility::TextSegment VCLXAccessibleEdit::getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextTy… in getTextBehindIndex() argument
490 return VCLXAccessibleTextComponent::getTextBehindIndex( nIndex, aTextType ); in getTextBehindIndex()
515 sal_Bool VCLXAccessibleEdit::pasteText( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, Runtim… in pasteText() argument
538 bReturn = replaceText( nIndex, nIndex, sText ); in pasteText()
558 sal_Bool VCLXAccessibleEdit::insertText( const ::rtl::OUString& sText, sal_Int32 nIndex ) throw (In… in insertText() argument
562 return replaceText( nIndex, nIndex, sText ); in insertText()
584 sal_Int32 nIndex = nMinIndex + sReplacement.getLength(); in replaceText() local
585 setSelection( nIndex, nIndex ); in replaceText()