Home
last modified time | relevance | path

Searched refs:fitsOnLine (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DLineWidth.h49 bool fitsOnLine() const { return currentWidth() <= (m_availableWidth + LayoutUnit::epsilon()); } in fitsOnLine() function
50 …bool fitsOnLine(float extra) const { return currentWidth() + extra <= (m_availableWidth + LayoutUn… in fitsOnLine() function
51 bool fitsOnLine(float extra, WhitespaceTreatment whitespaceTreatment) const in fitsOnLine() function
DBreakingContextInlineHeaders.h105 if (m_width.fitsOnLine() || m_lastWS == NOWRAP) in clearLineBreakIfFitsOnLine()
272 if (m_width.fitsOnLine()) { in handleBR()
374 …if (m_floatsFitOnLine && m_width.fitsOnLine(m_block->logicalWidthForFloat(floatingObject).toFloat(… in handleFloat()
675 if (!m_width.committedWidth() && m_autoWrap && !m_width.fitsOnLine()) in handleText()
682 …if (m_width.fitsOnLine() && m_currentCharacterIsSpace && m_currentStyle->breakOnlyAfterWhiteSpace(… in handleText()
689 if (!m_width.fitsOnLine(charWidth)) { in handleText()
695 if (lineWasTooWide || !m_width.fitsOnLine()) { in handleText()
828 if (!m_width.fitsOnLine()) { in handleText()
840 …if (m_width.committedWidth() && !m_width.fitsOnLine() && m_lineBreak.object() && m_currWS == NOWRA… in commitAndUpdateLineBreakIfNeeded()
857 if (!m_width.fitsOnLine() && !m_width.committedWidth()) in commitAndUpdateLineBreakIfNeeded()
[all …]
DLineWidth.cpp183 ASSERT(!fitsOnLine()); in fitBelowFloats()