Lines Matching refs:rStr

710 EditPaM ImpEditEngine::InsertText( EditSelection aSel, const XubString& rStr )  in InsertText()  argument
712 EditPaM aPaM = ImpInsertText( aSel, rStr ); in InsertText()
2770 EditPaM ImpEditEngine::ImpInsertText( EditSelection aCurSel, const XubString& rStr ) in ImpInsertText() argument
2790 XubString aText( rStr ); in ImpInsertText()
2874 EditPaM ImpEditEngine::ImpFastInsertText( EditPaM aPaM, const XubString& rStr ) in ImpFastInsertText() argument
2876 …DBG_ASSERT( rStr.Search( 0x0A ) == STRING_NOTFOUND, "FastInsertText: Zeilentrenner nicht erlaubt!"… in ImpFastInsertText()
2877 …DBG_ASSERT( rStr.Search( 0x0D ) == STRING_NOTFOUND, "FastInsertText: Zeilentrenner nicht erlaubt!"… in ImpFastInsertText()
2878 DBG_ASSERT( rStr.Search( '\t' ) == STRING_NOTFOUND, "FastInsertText: Features nicht erlaubt!" ); in ImpFastInsertText()
2880 if ( ( aPaM.GetNode()->Len() + rStr.Len() ) < MAXCHARSINPARA ) in ImpFastInsertText()
2884 InsertUndo( new EditUndoInsertChars( this, CreateEPaM( aPaM ), rStr ) ); in ImpFastInsertText()
2887 aPaM = aEditDoc.InsertText( aPaM, rStr ); in ImpFastInsertText()
2892 aPaM = ImpInsertText( aPaM, rStr ); in ImpFastInsertText()
3565 XubString& rStr = *pNode; in MatchGroup() local
3566 while ( nCur < rStr.Len() ) in MatchGroup()
3568 if ( rStr.GetChar( nCur ) == nSC ) in MatchGroup()
3570 else if ( rStr.GetChar( nCur ) == nEC ) in MatchGroup()
3604 XubString& rStr = *pNode; in MatchGroup() local
3607 if ( rStr.GetChar( nCur ) == nSC ) in MatchGroup()
3613 else if ( rStr.GetChar( nCur ) == nEC ) in MatchGroup()