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

/external/webkit/WebCore/page/wince/
H A DFrameWince.cpp105 float printedPagesHeight = 0.0; local
107 float proposedBottom = min(docHeight, printedPagesHeight + pageHeight);
108 frame->view()->adjustPageHeight(&proposedBottom, printedPagesHeight, proposedBottom, printedPagesHeight);
109 currPageHeight = max(1.0f, proposedBottom - printedPagesHeight);
111 pages.append(IntRect(0, printedPagesHeight, currPageWidth, currPageHeight));
112 printedPagesHeight += currPageHeight;
113 } while (printedPagesHeight < docHeight);
/external/webkit/WebCore/page/
H A DPrintContext.cpp102 float printedPagesHeight = 0; local
104 float proposedBottom = std::min(docHeight, printedPagesHeight + pageSizeInPixels.height());
105 m_frame->view()->adjustPageHeight(&proposedBottom, printedPagesHeight, proposedBottom, printedPagesHeight);
106 currPageHeight = max(1.0f, proposedBottom - printedPagesHeight);
108 m_pageRects.append(IntRect(0, (int)printedPagesHeight, (int)currPageWidth, (int)currPageHeight));
109 printedPagesHeight += currPageHeight;
110 } while (printedPagesHeight < docHeight);

Completed in 85 milliseconds