Lines Matching refs:sal_Int32

89             sal_Int32 nOldCaretPosition = m_nCaretPosition;  in ProcessWindowEvent()
90 sal_Int32 nOldSelectionStart = m_nSelectionStart; in ProcessWindowEvent()
101 aOldValue <<= (sal_Int32) nOldCaretPosition; in ProcessWindowEvent()
102 aNewValue <<= (sal_Int32) m_nCaretPosition; in ProcessWindowEvent()
166 void VCLXAccessibleEdit::implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex ) in implGetSelection()
211 sal_Int32 VCLXAccessibleEdit::getAccessibleChildCount() throw (RuntimeException) in getAccessibleChildCount()
220 Reference< XAccessible > VCLXAccessibleEdit::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBou… in getAccessibleChild()
250 sal_Int32 VCLXAccessibleEdit::getAccessibleActionCount( ) throw (RuntimeException) in getAccessibleActionCount()
260 sal_Bool VCLXAccessibleEdit::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsExcepti… in doAccessibleAction()
280 ::rtl::OUString VCLXAccessibleEdit::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (Inde… in getAccessibleActionDescription()
293 Reference< XAccessibleKeyBinding > VCLXAccessibleEdit::getAccessibleActionKeyBinding( sal_Int32 nIn… in getAccessibleActionKeyBinding()
307 sal_Int32 VCLXAccessibleEdit::getCaretPosition( ) throw (RuntimeException) in getCaretPosition()
314 sal_Bool VCLXAccessibleEdit::setCaretPosition( sal_Int32 nIndex ) throw (IndexOutOfBoundsException,… in setCaretPosition()
321 sal_Unicode VCLXAccessibleEdit::getCharacter( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, … in getCharacter()
330 Sequence< PropertyValue > VCLXAccessibleEdit::getCharacterAttributes( sal_Int32 nIndex, const Seque… in getCharacterAttributes()
339 awt::Rectangle VCLXAccessibleEdit::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsEx… in getCharacterBounds()
344 sal_Int32 nLength = implGetText().getLength(); in getCharacterBounds()
355 for ( sal_Int32 i = 0; i < nLength; ++i ) in getCharacterBounds()
358 sal_Int32 nHeight = aRect.GetHeight(); in getCharacterBounds()
382 sal_Int32 VCLXAccessibleEdit::getCharacterCount( ) throw (RuntimeException) in getCharacterCount()
391 sal_Int32 VCLXAccessibleEdit::getIndexAtPoint( const awt::Point& aPoint ) throw (RuntimeException) in getIndexAtPoint()
409 sal_Int32 VCLXAccessibleEdit::getSelectionStart( ) throw (RuntimeException) in getSelectionStart()
418 sal_Int32 VCLXAccessibleEdit::getSelectionEnd( ) throw (RuntimeException) in getSelectionEnd()
427 sal_Bool VCLXAccessibleEdit::setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (Inde… in setSelection()
459 ::rtl::OUString VCLXAccessibleEdit::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) thro… in getTextRange()
468 ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextAtIndex( sal_Int32 nIndex, … in getTextAtIndex()
477 ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextBeforeIndex( sal_Int32 nInd… in getTextBeforeIndex()
486 ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextBehindIndex( sal_Int32 nInd… in getTextBehindIndex()
495 sal_Bool VCLXAccessibleEdit::copyText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOut… in copyText()
506 sal_Bool VCLXAccessibleEdit::cutText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutO… in cutText()
515 sal_Bool VCLXAccessibleEdit::pasteText( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, Runtim… in pasteText()
549 sal_Bool VCLXAccessibleEdit::deleteText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexO… in deleteText()
558 sal_Bool VCLXAccessibleEdit::insertText( const ::rtl::OUString& sText, sal_Int32 nIndex ) throw (In… in insertText()
567 sal_Bool VCLXAccessibleEdit::replaceText( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const ::rtl::… in replaceText()
577 sal_Int32 nMinIndex = ::std::min( nStartIndex, nEndIndex ); in replaceText()
578 sal_Int32 nMaxIndex = ::std::max( nStartIndex, nEndIndex ); in replaceText()
584 sal_Int32 nIndex = nMinIndex + sReplacement.getLength(); in replaceText()
594 sal_Bool VCLXAccessibleEdit::setAttributes( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const Seque… in setAttributes()