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

  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 148 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
150 pageRect = pageRect.transposedRect();
151 m_pageRects.append(pageRect);
155 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
157 pageRect = pageRect.transposedRect();
158 m_pageRects.append(pageRect);
196 IntRect pageRect = m_pageRects[pageNumber];
197 float scale = width / pageRect.width()
    [all...]
PrintContext.h 57 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; }
86 void outputLinkedDestinations(GraphicsContext&, Node*, const IntRect& pageRect);
Chrome.h 80 FloatRect pageRect() const;
ChromeClient.h 92 virtual FloatRect pageRect() = 0;
CreateWindow.cpp 103 FloatSize viewportSize = page->chrome().pageRect().size();
Chrome.cpp 119 FloatRect Chrome::pageRect() const
121 return m_client->pageRect();
  /external/mdnsresponder/mDNSPosix/
parselog.py 174 pageRect = CGRectMake (-leftMargin, -bottomMargin, leftMargin + width, bottomMargin + pageHeight) # landscape
176 c = CGPDFContextCreateWithFilename (outFile, pageRect)
185 c.beginPage (pageRect)
218 c.moveToPoint(pageRect.origin.x,height*typesize+6)
222 c.showTextAtPoint(pageRect.origin.x + 2, height*typesize + 2, ip, len(ip))
223 c.showTextAtPoint(pageRect.origin.x + 2 + typesize*8, height*typesize + 2, hname, len(hname))
224 c.showTextAtPoint(pageRect.origin.x + 2 + typesize*25, height*typesize + 2, hinfo, len(hinfo))
227 c.moveToPoint((time-minTime)*scale,pageRect.origin.y)
237 c.showTextAtPoint((time-minTime)*scale - theStringWidth/2, pageRect.origin.y + 2, theTimeString, len(theTimeString))
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.h 77 virtual WebCore::FloatRect pageRect();
WebFrameImpl.cpp 323 IntRect pageRect = m_pageRects[pageNumber];
324 return m_printedPageWidth / pageRect.width();
334 IntRect pageRect = m_pageRects[pageNumber];
335 float scale = m_printedPageWidth / pageRect.width();
341 context.translate(static_cast<float>(-pageRect.x()), static_cast<float>(-pageRect.y()));
342 context.clip(pageRect);
343 frame()->view()->paintContents(&context, pageRect);
345 outputLinkedDestinations(context, frame()->document(), pageRect);
    [all...]
ChromeClientImpl.cpp 178 FloatRect ChromeClientImpl::pageRect()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 78 virtual FloatRect pageRect() OVERRIDE { return FloatRect(); }

Completed in 256 milliseconds