HomeSort by relevance Sort by last modified time
    Searched refs:m_legacyPrinting (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderView.h 150 int bestTruncatedAt() const { return m_legacyPrinting.m_bestTruncatedAt; }
152 int truncatedAt() const { return m_legacyPrinting.m_truncatedAt; }
155 m_legacyPrinting.m_truncatedAt = y;
156 m_legacyPrinting.m_bestTruncatedAt = 0;
157 m_legacyPrinting.m_truncatorWidth = 0;
158 m_legacyPrinting.m_forcedPageBreak = false;
160 const IntRect& printRect() const { return m_legacyPrinting.m_printRect; }
161 void setPrintRect(const IntRect& r) { m_legacyPrinting.m_printRect = r; }
235 LegacyPrinting m_legacyPrinting;
RenderView.cpp 765 if (m_legacyPrinting.m_forcedPageBreak)
770 m_legacyPrinting.m_forcedPageBreak = true;
771 m_legacyPrinting.m_bestTruncatedAt = y;
777 if (boundingBox.width() > m_legacyPrinting.m_truncatorWidth) {
778 m_legacyPrinting.m_truncatorWidth = boundingBox.width();
779 m_legacyPrinting.m_bestTruncatedAt = y;

Completed in 95 milliseconds