Lines Matching refs:aLine

902 	String	aLine;  in GetTextSize()  local
909 aLine = rText.GetToken(i, '\n'); in GetTextSize()
910 aLine.EraseAllChars('\r'); in GetTextSize()
911 aLine.EraseLeadingChars('\n'); in GetTextSize()
912 aLine.EraseTrailingChars('\n'); in GetTextSize()
914 aSize = GetTextLineSize(rDevice, aLine); in GetTextSize()
920 xub_StrLen m = aLine.Len(); in GetTextSize()
925 sal_Unicode cLineChar = aLine.GetChar(n); in GetTextSize()
928 aText = aLine.Copy(0, n); in GetTextSize()
936 aText = aLine.Copy(0, m); in GetTextSize()
937 aLine.Erase(0, m); in GetTextSize()
942 aLine.EraseLeadingChars(' '); in GetTextSize()
943 aLine.EraseLeadingChars('\t'); in GetTextSize()
944 aLine.EraseLeadingChars(' '); in GetTextSize()
946 while (aLine.Len() > 0); in GetTextSize()
995 String aLine; in DrawText() local
1000 aLine = rText.GetToken(i, '\n'); in DrawText()
1001 aLine.EraseAllChars('\r'); in DrawText()
1002 aLine.EraseLeadingChars('\n'); in DrawText()
1003 aLine.EraseTrailingChars('\n'); in DrawText()
1004 aSize = GetTextLineSize(rDevice, aLine); in DrawText()
1009 xub_StrLen m = aLine.Len(); in DrawText()
1014 sal_Unicode cLineChar = aLine.GetChar(n); in DrawText()
1017 aText = aLine.Copy(0, n); in DrawText()
1024 aText = aLine.Copy(0, m); in DrawText()
1025 aLine.Erase(0, m); in DrawText()
1030 aLine.EraseLeadingChars(' '); in DrawText()
1031 aLine.EraseLeadingChars('\t'); in DrawText()
1032 aLine.EraseLeadingChars(' '); in DrawText()
1034 while (GetTextLineSize(rDevice, aLine).Width() > MaxWidth); in DrawText()
1037 if (aLine.Len() > 0) in DrawText()
1039 DrawTextLine(rDevice, aPoint, aLine); in DrawText()
1045 DrawTextLine(rDevice, aPoint, aLine); in DrawText()