Lines Matching refs:rStr

844 bool Edit::ImplTruncateToMaxLen( rtl::OUString& rStr, sal_uInt32 nSelectionLen ) const  in ImplTruncateToMaxLen()  argument
848 sal_uInt32 nLenAfter = static_cast<sal_uInt32>(maText.Len()) + rStr.getLength() - nSelectionLen; in ImplTruncateToMaxLen()
852 rStr = rStr.copy( 0, nErasePos ); in ImplTruncateToMaxLen()
860 void Edit::ImplInsertText( const XubString& rStr, const Selection* pNewSel, sal_Bool bIsUserInput ) in ImplInsertText() argument
865 rtl::OUString aNewText( ImplGetValidString( rStr ) ); in ImplInsertText()
876 if (bIsUserInput && rStr.Len()) in ImplInsertText()
878 …DBG_ASSERT( rStr.Len() == 1, "unexpected string length. User input is expected to providse 1 char … in ImplInsertText()
923 bIsInputSequenceChecking = rStr.Len() == 1 && in ImplInsertText()
927 xBI.is() && i18n::ScriptType::COMPLEX == xBI->getScriptType( rStr, 0 ); in ImplInsertText()
933 sal_Unicode cChar = rStr.GetChar(0); in ImplInsertText()
2707 void Edit::ReplaceSelected( const XubString& rStr ) in ReplaceSelected() argument
2710 mpSubEdit->ReplaceSelected( rStr ); in ReplaceSelected()
2712 ImplInsertText( rStr ); in ReplaceSelected()
2790 void Edit::SetText( const XubString& rStr ) in SetText() argument
2793 mpSubEdit->SetText( rStr ); // Nicht direkt ImplSetText, falls SetText ueberladen in SetText()
2797 ImplSetText( rStr, &aNewSel ); in SetText()
2803 void Edit::SetText( const XubString& rStr, const Selection& rSelection ) in SetText() argument
2806 mpSubEdit->SetText( rStr, rSelection ); in SetText()
2808 ImplSetText( rStr, &rSelection ); in SetText()