Lines Matching refs:aPrevSel

2156         TextSelection aPrevSel( mpImpl->maSelection );  in drop()  local
2157 aPrevSel.Justify(); in drop()
2159 … sal_uInt16 nPrevStartParaLen = mpImpl->mpTextEngine->GetTextLen( aPrevSel.GetStart().GetPara() ); in drop()
2200 if ( aPrevSel.HasRange() && in drop()
2205 if ( ( mpImpl->mpDDInfo->maDropPos.GetPara() < aPrevSel.GetStart().GetPara() ) || in drop()
2206 ( ( mpImpl->mpDDInfo->maDropPos.GetPara() == aPrevSel.GetStart().GetPara() ) in drop()
2207 … && ( mpImpl->mpDDInfo->maDropPos.GetIndex() < aPrevSel.GetStart().GetIndex() ) ) ) in drop()
2212 aPrevSel.GetStart().GetPara() += nNewParasBeforeSelection; in drop()
2213 aPrevSel.GetEnd().GetPara() += nNewParasBeforeSelection; in drop()
2215 if ( mpImpl->mpDDInfo->maDropPos.GetPara() == aPrevSel.GetStart().GetPara() ) in drop()
2218 … mpImpl->mpTextEngine->GetTextLen( aPrevSel.GetStart().GetPara() ) - nPrevStartParaLen; in drop()
2220 aPrevSel.GetStart().GetIndex() = in drop()
2221 aPrevSel.GetStart().GetIndex() + nNewChars; in drop()
2222 if ( aPrevSel.GetStart().GetPara() == aPrevSel.GetEnd().GetPara() ) in drop()
2223 aPrevSel.GetEnd().GetIndex() = in drop()
2224 aPrevSel.GetEnd().GetIndex() + nNewChars; in drop()
2231 aPaM.GetPara() -= ( aPrevSel.GetEnd().GetPara() - aPrevSel.GetStart().GetPara() ); in drop()
2232 if ( aPrevSel.GetEnd().GetPara() == mpImpl->mpDDInfo->maDropPos.GetPara() ) in drop()
2235 aPaM.GetIndex() - aPrevSel.GetEnd().GetIndex(); in drop()
2236 if ( aPrevSel.GetStart().GetPara() == mpImpl->mpDDInfo->maDropPos.GetPara() ) in drop()
2238 aPaM.GetIndex() + aPrevSel.GetStart().GetIndex(); in drop()
2243 mpImpl->mpTextEngine->ImpDeleteText( aPrevSel ); in drop()