Lines Matching refs:aLine

899 	String	aLine;  in GetTextSize()  local
906 aLine = rText.GetToken(i, '\n'); in GetTextSize()
907 aLine.EraseAllChars('\r'); in GetTextSize()
908 aLine.EraseLeadingChars('\n'); in GetTextSize()
909 aLine.EraseTrailingChars('\n'); in GetTextSize()
911 aSize = GetTextLineSize(rDevice, aLine); in GetTextSize()
917 xub_StrLen m = aLine.Len(); in GetTextSize()
922 sal_Unicode cLineChar = aLine.GetChar(n); in GetTextSize()
925 aText = aLine.Copy(0, n); in GetTextSize()
933 aText = aLine.Copy(0, m); in GetTextSize()
934 aLine.Erase(0, m); in GetTextSize()
939 aLine.EraseLeadingChars(' '); in GetTextSize()
940 aLine.EraseLeadingChars('\t'); in GetTextSize()
941 aLine.EraseLeadingChars(' '); in GetTextSize()
943 while (aLine.Len() > 0); in GetTextSize()
992 String aLine; in DrawText() local
997 aLine = rText.GetToken(i, '\n'); in DrawText()
998 aLine.EraseAllChars('\r'); in DrawText()
999 aLine.EraseLeadingChars('\n'); in DrawText()
1000 aLine.EraseTrailingChars('\n'); in DrawText()
1001 aSize = GetTextLineSize(rDevice, aLine); in DrawText()
1006 xub_StrLen m = aLine.Len(); in DrawText()
1011 sal_Unicode cLineChar = aLine.GetChar(n); in DrawText()
1014 aText = aLine.Copy(0, n); in DrawText()
1021 aText = aLine.Copy(0, m); in DrawText()
1022 aLine.Erase(0, m); in DrawText()
1027 aLine.EraseLeadingChars(' '); in DrawText()
1028 aLine.EraseLeadingChars('\t'); in DrawText()
1029 aLine.EraseLeadingChars(' '); in DrawText()
1031 while (GetTextLineSize(rDevice, aLine).Width() > MaxWidth); in DrawText()
1034 if (aLine.Len() > 0) in DrawText()
1036 DrawTextLine(rDevice, aPoint, aLine); in DrawText()
1042 DrawTextLine(rDevice, aPoint, aLine); in DrawText()