Searched refs:flowIsLTR (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.cpp234 float InlineTextBox::placeEllipsisBox(bool flowIsLTR, float visibleLeftEdge, float visibleRightEdge, float ellipsisWidth, bool& foundBox) argument
242 float ellipsisX = flowIsLTR ? visibleRightEdge - ellipsisWidth : visibleLeftEdge + ellipsisWidth;
247 bool ltrFullTruncation = flowIsLTR && ellipsisX <= m_x;
248 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= (m_x + m_logicalWidth);
256 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < m_x + m_logicalWidth);
257 bool rtlEllipsisWithinBox = !flowIsLTR && (ellipsisX > m_x);
265 if (ltr != flowIsLTR) {
291 if (flowIsLTR)
H A DInlineTextBox.h121 virtual float placeEllipsisBox(bool flowIsLTR, float visibleLeftEdge, float visibleRightEdge, float ellipsisWidth, bool& foundBox);

Completed in 93 milliseconds