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

  /external/webkit/WebCore/page/wince/
FrameWince.cpp 98 float currPageHeight = pageHeight / userScaleFactor;
109 currPageHeight = max(1.0f, proposedBottom - printedPagesHeight);
111 pages.append(IntRect(0, printedPagesHeight, currPageWidth, currPageHeight));
112 printedPagesHeight += currPageHeight;
  /external/webkit/WebCore/page/
PrintContext.cpp 97 float currPageHeight = pageSizeInPixels.height() / userScaleFactor;
106 currPageHeight = max(1.0f, proposedBottom - printedPagesHeight);
108 m_pageRects.append(IntRect(0, (int)printedPagesHeight, (int)currPageWidth, (int)currPageHeight));
109 printedPagesHeight += currPageHeight;
  /external/webkit/WebKit/mac/WebView/
WebFrame.mm 562 float currPageHeight = printHeight;
568 for (float i = 0; i < docHeight; i += currPageHeight) {
571 currPageHeight = max(1.0f, proposedBottom - i);
573 NSValue* val = [NSValue valueWithRect: NSMakeRect(j, i, printWidth, currPageHeight)];
    [all...]

Completed in 932 milliseconds