Lines Matching refs:aText

197 				aSel.nEndPos += aToken.aText.Len() + nExtra  in MouseButtonDown()
205 aSel.nEndPos = aSel.nEndPos + sal::static_int_cast< sal_uInt16 >(aToken.aText.Len()); in MouseButtonDown()
871 String aText; in GetTextLineSize() local
886 aText = rLine.GetToken(i, '\t'); in GetTextLineSize()
887 aText.EraseLeadingChars('\t'); in GetTextLineSize()
888 aText.EraseTrailingChars('\t'); in GetTextLineSize()
889 aSize.Width() += rDevice.GetTextWidth(aText); in GetTextLineSize()
904 String aText; in GetTextSize() local
928 aText = aLine.Copy(0, n); in GetTextSize()
929 if (GetTextLineSize(rDevice, aText).Width() < MaxWidth) in GetTextSize()
936 aText = aLine.Copy(0, m); in GetTextSize()
938 aSize = GetTextLineSize(rDevice, aText); in GetTextSize()
963 String aText; in DrawTextLine() local
976 aText = rLine.GetToken(i, '\t'); in DrawTextLine()
977 aText.EraseLeadingChars('\t'); in DrawTextLine()
978 aText.EraseTrailingChars('\t'); in DrawTextLine()
979 rDevice.DrawText(aPoint, aText); in DrawTextLine()
980 aPoint.X() += rDevice.GetTextWidth(aText); in DrawTextLine()
996 String aText; in DrawText() local
1017 aText = aLine.Copy(0, n); in DrawText()
1018 if (GetTextLineSize(rDevice, aText).Width() < MaxWidth) in DrawText()
1024 aText = aLine.Copy(0, m); in DrawText()
1027 DrawTextLine(rDevice, aPoint, aText); in DrawText()
1322 String aText( pDoc->GetText() ); in Insert() local
1323 String aTemp = aText; in Insert()
1342 aText = pDoc->GetText(); in Insert()
1345 pEditWin->InsertText( aText ); in Insert()
1349 aTemp += aText; in Insert()
1350 aText = aTemp; in Insert()
1371 String aText( pDoc->GetText() ); in InsertFrom() local
1372 String aTemp = aText; in InsertFrom()
1391 aText = pDoc->GetText(); in InsertFrom()
1394 pEditWin->InsertText( aText ); in InsertFrom()
1398 aTemp += aText; in InsertFrom()
1399 aText = aTemp; in InsertFrom()