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

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineWidth.cpp122 inline static float availableWidthAtOffset(const RenderBlockFlow& block, const LayoutUnit& offset, bool shouldIndentText, float& newLineLeft, float& newLineRight) argument
125 newLineRight = block.logicalRightOffsetForLine(offset, shouldIndentText).toFloat();
126 return std::max(0.0f, newLineRight - newLineLeft);
132 float newLineRight = block.logicalRightOffsetForLine(offset, shouldIndentText).toFloat(); local
133 return std::max(0.0f, newLineRight - newLineLeft);
136 void LineWidth::updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWidth, const float& newLineLeft, const float& newLineRight) argument
144 m_right = newLineRight;
166 float newLineRight = m_right; local
168 newLineWidth = availableWidthAtOffset(m_block, newLineTop, shouldIndentText(), newLineLeft, newLineRight);
177 updateLineDimension(newLineTop, newLineWidth, newLineLeft, newLineRight);
189 float newLineRight = m_right; local
[all...]
H A DLineWidth.h75 void updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWidth, const float& newLineLeft, const float& newLineRight);

Completed in 32 milliseconds