Lines Matching refs:rStart

1586                       const SwIndex &rStart,  in CopyText()  argument
1591 CopyText( pDest, aIdx, rStart, nLen, bForceCopyOfAllAttrs ); in CopyText()
1597 const SwIndex &rStart, in CopyText() argument
1601 xub_StrLen nTxtStartIdx = rStart.GetIndex(); in CopyText()
1695 nTxtStartIdx = rStart.GetIndex(); in CopyText()
1967 const SwIndex & rStart, const xub_StrLen nLen ) in CutText() argument
1972 CutImpl( pDest, aDestStt, rStart, nLen, false ); in CutText()
1978 EraseText( rStart, nLen ); in CutText()
1984 const SwIndex & rStart, /*const*/ xub_StrLen nLen, const bool bUpdate ) in CutImpl() argument
1990 EraseText( rStart, nLen ); in CutImpl()
1999 CopyText( pDest, rDestStart, rStart, nLen); in CutImpl()
2000 EraseText(rStart, nLen); in CutImpl()
2008 CopyAttr( pDest, rStart.GetIndex(), rDestStart.GetIndex() ); in CutImpl()
2012 xub_StrLen nTxtStartIdx = rStart.GetIndex(); in CutImpl()
2024 const xub_StrLen nEnd = rStart.GetIndex() + nLen; in CutImpl()
2118 Update( rStart, nLen, sal_True, sal_True ); in CutImpl()
2177 const xub_StrLen nEnd = rStart.GetIndex() + nLen; in CutImpl()
2320 Update( rStart, nLen, sal_True, sal_True ); in CutImpl()
2325 *pHt->GetStart() = *pHt->GetEnd() = rStart.GetIndex(); in CutImpl()
2331 Update( rStart, nLen, sal_True, sal_True ); in CutImpl()
3430 void SwTxtNode::ReplaceText( const SwIndex& rStart, const xub_StrLen nDelLen, in ReplaceText() argument
3433 ASSERT( rStart.GetIndex() < m_Text.Len() && in ReplaceText()
3434 rStart.GetIndex() + nDelLen <= m_Text.Len(), in ReplaceText()
3436 const xub_StrLen nStartPos = rStart.GetIndex(); in ReplaceText()
3468 ((SwIndex&)rStart)++; in ReplaceText()
3469 m_Text.Erase( rStart.GetIndex(), nLen - 1 ); in ReplaceText()
3470 Update( rStart, nLen - 1, true ); in ReplaceText()
3473 m_Text.Insert( aTmpTxt, rStart.GetIndex() ); in ReplaceText()
3474 Update( rStart, aTmpTxt.Len(), false ); in ReplaceText()
3479 Update( rStart, nLen, true ); in ReplaceText()
3482 Update( rStart, rText.Len(), false ); in ReplaceText()