Lines Matching refs:aText

194 				aSel.nEndPos += aToken.aText.Len() + nExtra  in MouseButtonDown()
202 … aSel.nEndPos = aSel.nEndPos + sal::static_int_cast< sal_uInt16 >(aToken.aText.Len()); in MouseButtonDown()
868 String aText; in GetTextLineSize() local
883 aText = rLine.GetToken(i, '\t'); in GetTextLineSize()
884 aText.EraseLeadingChars('\t'); in GetTextLineSize()
885 aText.EraseTrailingChars('\t'); in GetTextLineSize()
886 aSize.Width() += rDevice.GetTextWidth(aText); in GetTextLineSize()
901 String aText; in GetTextSize() local
925 aText = aLine.Copy(0, n); in GetTextSize()
926 if (GetTextLineSize(rDevice, aText).Width() < MaxWidth) in GetTextSize()
933 aText = aLine.Copy(0, m); in GetTextSize()
935 aSize = GetTextLineSize(rDevice, aText); in GetTextSize()
960 String aText; in DrawTextLine() local
973 aText = rLine.GetToken(i, '\t'); in DrawTextLine()
974 aText.EraseLeadingChars('\t'); in DrawTextLine()
975 aText.EraseTrailingChars('\t'); in DrawTextLine()
976 rDevice.DrawText(aPoint, aText); in DrawTextLine()
977 aPoint.X() += rDevice.GetTextWidth(aText); in DrawTextLine()
993 String aText; in DrawText() local
1014 aText = aLine.Copy(0, n); in DrawText()
1015 if (GetTextLineSize(rDevice, aText).Width() < MaxWidth) in DrawText()
1021 aText = aLine.Copy(0, m); in DrawText()
1024 DrawTextLine(rDevice, aPoint, aText); in DrawText()
1319 String aText( pDoc->GetText() ); in Insert() local
1320 String aTemp = aText; in Insert()
1339 aText = pDoc->GetText(); in Insert()
1342 pEditWin->InsertText( aText ); in Insert()
1346 aTemp += aText; in Insert()
1347 aText = aTemp; in Insert()
1368 String aText( pDoc->GetText() ); in InsertFrom() local
1369 String aTemp = aText; in InsertFrom()
1388 aText = pDoc->GetText(); in InsertFrom()
1391 pEditWin->InsertText( aText ); in InsertFrom()
1395 aTemp += aText; in InsertFrom()
1396 aText = aTemp; in InsertFrom()