• Home
  • Raw
  • Download

Lines Matching refs:LineWidth

21935         Merge LineOffsets and LineWidth
21938 Merged lineOffsets into LineWidth.
21949 (WebCore::RenderBlock::skipLeadingWhitespace): Takes LineWidth instead of LineOffset
21950 …(WebCore::LineWidth::LineWidth): Takes RenderBlock* and boolean isFirstLine; call updateAvailableW…
21952 (WebCore::LineWidth::computeAvailableWidthFromLeftAndRight): Added.
21953 …(WebCore::LineWidth::updateAvailableWidth): Renamed from LineOffsets::update; this function now up…
21955 (WebCore::LineWidth::shrinkAvailableWidthForNewFloatIfNeeded): Renamed from
21957 …(WebCore::LineWidth::applyOverhang): No longer takes arguments since both arguments were member va…
21959 (WebCore::LineWidth::fitBelowFloats): No longer takes isFirstLine.
21960 (WebCore::RenderBlock::findNextLineBreak): Uses LineWidth.
21961 (WebCore::RenderBlock::positionNewFloatOnLine): Takes a reference to LineWidth.
22949 … Make availableWidth and totalOverhangWidth in findNextLineBreak member variables of LineWidth
22952 …Added m_availableWidth and m_overhangWidth to LineWidth this allows us to encapsulate m_overhangWi…
22956 (WebCore::LineWidth::LineWidth):
22957 …(WebCore::LineWidth::fitsOnLine): Added; returns true if current width + first argument <= availab…
22958 (WebCore::LineWidth::availableWidth): Added.
22959 (WebCore::LineWidth::setAvailableWidth): Added; takes LineOffsets.
22960 … (WebCore::LineWidth::applyOverhang): Added; obtains the overhang width from ruby run and inflates
22962 (WebCore::LineWidth::fitBelowFloats): Moved from RenderBlock.
22963 (WebCore::RenderBlock::findNextLineBreak): Uses LineWidth.
23395 named LineWidth.
23398 (WebCore::LineWidth::LineWidth): Added.
23399 … (WebCore::LineWidth::currentWidth): Added; returns the sum of committed and uncommitted width.
23400 (WebCore::LineWidth::uncommittedWidth): Added.
23401 (WebCore::LineWidth::committedWidth): Added.
23402 …(WebCore::LineWidth::addUncommittedWidth): Added; adds the specified width to the uncommitted widt…
23403 … (WebCore::LineWidth::commit): Added; commits the current width and clears the uncommitted width.
23404 (WebCore::RenderBlock::findNextLineBreak): Uses LineWidth.