Lines Matching refs:aLineRect
60 DBG_ASSERT( aLineRect.IsEmpty() && aTotalRect.IsEmpty(), "Flush: not empty" ); in Flush()
121 if( aLineRect.IsEmpty() ) in FlushLine()
126 aTotalRect = aLineRect; // start new total rect in FlushLine()
130 if ( aLineRect.Left() == aTotalRect.Left() && in FlushLine()
131 aLineRect.Right() == aTotalRect.Right() && in FlushLine()
132 aLineRect.Top() == aTotalRect.Bottom() + 1 ) in FlushLine()
135 aTotalRect.Bottom() = aLineRect.Bottom(); in FlushLine()
140 aTotalRect = aLineRect; // and start new one in FlushLine()
144 aLineRect.SetEmpty(); in FlushLine()
156 if ( aLineRect.IsEmpty() ) in AddRect()
158 aLineRect = aJustified; // start new line rect in AddRect()
163 if ( aJustified.Top() == aLineRect.Top() && in AddRect()
164 aJustified.Bottom() == aLineRect.Bottom() ) in AddRect()
167 if ( aJustified.Left() == aLineRect.Right() + 1 ) in AddRect()
169 aLineRect.Right() = aJustified.Right(); in AddRect()
172 else if ( aJustified.Right() + 1 == aLineRect.Left() ) // for RTL layout in AddRect()
174 aLineRect.Left() = aJustified.Left(); in AddRect()
181 aLineRect = aJustified; // and start new one in AddRect()