Lines Matching refs:aSel

728     ESelection aSel = GetSelection();  in MoveParagraphs()  local
729 Range aRange( aSel.nStartPara, aSel.nEndPara ); in MoveParagraphs()
837 EditSelection aSel( pImpEditView->GetEditSelection() ); in SetStyleSheet() local
839 PIMPEE->SetStyleSheet( aSel, pStyle ); in SetStyleSheet()
849 EditSelection aSel( pImpEditView->GetEditSelection() ); in GetStyleSheet() local
850 aSel.Adjust( PIMPEE->GetEditDoc() ); in GetStyleSheet()
851 sal_uInt32 nStartPara = PIMPEE->GetEditDoc().GetPos( aSel.Min().GetNode() ); in GetStyleSheet()
852 sal_uInt32 nEndPara = PIMPEE->GetEditDoc().GetPos( aSel.Max().GetNode() ); in GetStyleSheet()
926 EditSelection aSel = pImpEditView->GetEditSelection(); in CompleteAutoCorrect() local
927 aSel = PIMPEE->EndOfWord( aSel.Max() ); in CompleteAutoCorrect()
929 aSel = PIMPEE->AutoCorrect( aSel, 0, !IsInsertMode() ); in CompleteAutoCorrect()
930 pImpEditView->SetEditSelection( aSel ); in CompleteAutoCorrect()
1226 ESelection aSel = GetSelection(); in ExecuteSpellPopup() local
1227 aSel.nStartPos = 0; in ExecuteSpellPopup()
1228 aSel.nEndPos = 0xFFFF; in ExecuteSpellPopup()
1229 SetSelection( aSel ); in ExecuteSpellPopup()
1369 EditSelection aSel( pImpEditView->GetEditSelection() ); in GetFieldAtSelection() local
1370 aSel.Adjust( pImpEditView->pEditEngine->pImpEditEngine->GetEditDoc() ); in GetFieldAtSelection()
1372 if ( ( aSel.Min().GetNode() == aSel.Max().GetNode() ) && in GetFieldAtSelection()
1373 ( ( aSel.Max().GetIndex() == aSel.Min().GetIndex() ) || in GetFieldAtSelection()
1374 ( aSel.Max().GetIndex() == aSel.Min().GetIndex()+1 ) ) ) in GetFieldAtSelection()
1376 EditPaM aPaM = aSel.Min(); in GetFieldAtSelection()
1469 ESelection aSel( GetSelection() ); in ChangeFontSize() local
1470 ESelection aOldSelection( aSel ); in ChangeFontSize()
1471 aSel.Adjust(); in ChangeFontSize()
1473 if( !aSel.HasRange() ) in ChangeFontSize()
1475 aSel = rEditEngine.GetWord( aSel, com::sun::star::i18n::WordType::DICTIONARY_WORD ); in ChangeFontSize()
1478 if( aSel.HasRange() ) in ChangeFontSize()
1480 for( sal_uInt32 nPara = aSel.nStartPara; nPara <= aSel.nEndPara; nPara++ ) in ChangeFontSize()
1488 const sal_uInt16 nBeginPos = (nPara == aSel.nStartPara) ? aSel.nStartPos : 0; in ChangeFontSize()
1489 const sal_uInt16 nEndPos = (nPara == aSel.nEndPara) ? aSel.nEndPos : 0xffff; in ChangeFontSize()
1514 ChangeFontSizeImpl( this, bGrow, aSel, pFontList ); in ChangeFontSize()
1608 EditSelection aSel( pImpEditView->GetEditSelection() ); in GetSurroundingText() local
1609 aSel.Adjust( PIMPEE->GetEditDoc() ); in GetSurroundingText()
1613 XubString aStr = PIMPEE->GetSelected( aSel ); in GetSurroundingText()
1623 aSel.Min().SetIndex( 0 ); in GetSurroundingText()
1624 aSel.Max().SetIndex( aSel.Max().GetNode()->Len() ); in GetSurroundingText()
1625 return PIMPEE->GetSelected( aSel ); in GetSurroundingText()
1638 EditSelection aSel( pImpEditView->GetEditSelection() ); in GetSurroundingTextSelection() local
1639 aSel.Adjust( PIMPEE->GetEditDoc() ); in GetSurroundingTextSelection()
1640 XubString aStr = PIMPEE->GetSelected( aSel ); in GetSurroundingTextSelection()