Searched refs:firstPage (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKWebViewInternal.h106 - (NSInteger)_computePageCountAndStartDrawingToPDFForFrame:(_WKFrameHandle *)frame printInfo:(const WebKit::PrintInfo&)printInfo firstPage:(uint32_t)firstPage computedTotalScaleFactor:(double&)totalScaleFactor;
H A DWKWebView.mm2494 - (NSInteger)_computePageCountAndStartDrawingToPDFForFrame:(_WKFrameHandle *)frame printInfo:(const WebKit::PrintInfo&)printInfo firstPage:(uint32_t)firstPage computedTotalScaleFactor:(double&)totalScaleFactor
2502 if (!_page->sendSync(Messages::WebPage::ComputePagesForPrintingAndStartDrawingToPDF(frameID, printInfo, firstPage), Messages::WebPage::ComputePagesForPrintingAndStartDrawingToPDF::Reply(pageRects, totalScaleFactor)))
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A D_WKWebViewPrintFormatter.mm36 - (CGRect)_pageContentRect:(BOOL)firstPage;
79 return [self.webView _computePageCountAndStartDrawingToPDFForFrame:_frameToPrint printInfo:_printInfo firstPage:self.startPage computedTotalScaleFactor:_totalScaleFactor];
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DMetaAllocator.cpp233 uintptr_t firstPage = reinterpret_cast<uintptr_t>(node->m_start) >> m_logPageSize; local
239 if (lastPageForLeftAllocation - firstPage + 1 <= lastPage - firstPageForRightAllocation + 1) {
397 uintptr_t firstPage = reinterpret_cast<uintptr_t>(address) >> m_logPageSize; local
400 for (uintptr_t page = firstPage; page <= lastPage; ++page) {
413 uintptr_t firstPage = reinterpret_cast<uintptr_t>(address) >> m_logPageSize; local
416 for (uintptr_t page = firstPage; page <= lastPage; ++page) {
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DWKPrintingView.mm191 NSUInteger firstPage = [[[[_printOperation printInfo] dictionary] objectForKey:NSPrintFirstPage] unsignedIntegerValue];
193 if (lastPage - firstPage >= _printingPageRects.size())
256 NSUInteger firstPage = [self _firstPrintedPageNumber];
259 ASSERT(firstPage > 0);
260 ASSERT(firstPage <= lastPage);
261 LOG(View, "WKPrintingView requesting PDF data for pages %u...%u", firstPage, lastPage);
289 _webFrame->page()->drawPagesToPDF(_webFrame.get(), printInfo, firstPage - 1, lastPage - firstPage + 1, callback.get());
/macosx-10.10.1/dyld-353.2.1/src/
H A Ddyld.cpp2188 bool isCompatibleMachO(const uint8_t* firstPage, const char* path) argument
2195 const mach_header* mh = (mach_header*)firstPage;
2227 const mach_header* mh = (mach_header*)firstPage;
2373 static bool isSimulatorBinary(const uint8_t* firstPage, const char* path) argument
2375 const macho_header* mh = (macho_header*)firstPage;
2409 uint8_t firstPage[4096]; local
2414 if ( pread(fd, firstPage, fileLength, 0) != (ssize_t)fileLength )
2419 if ( pread(fd, firstPage, 4096,0) != 4096 )
2424 const fat_header* fileStartAsFat = (fat_header*)firstPage;
2429 if (pread(fd, firstPage, 409
[all...]
H A DImageLoaderMachO.h44 static ImageLoader* instantiateFromFile(const char* path, int fd, const uint8_t firstPage[4096], uint64_t offsetInFat,
H A DImageLoaderMachO.cpp254 ImageLoader* ImageLoaderMachO::instantiateFromFile(const char* path, int fd, const uint8_t firstPage[4096], uint64_t offsetInFat, argument
258 const unsigned int dataSize = sizeof(macho_header) + ((macho_header*)firstPage)->sizeofcmds;
260 const uint8_t* fileData = firstPage;
264 memcpy(buffer, firstPage, 4096);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm2609 void WebPage::computePagesForPrintingAndStartDrawingToPDF(uint64_t frameID, const PrintInfo& printInfo, uint32_t firstPage, PassRefPtr<Messages::WebPage::ComputePagesForPrintingAndStartDrawingToPDF::DelayedReply> reply)
2618 drawPagesToPDFImpl(frameID, printInfo, firstPage, pageCount - firstPage, pdfPageData);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebPage.h691 void computePagesForPrintingAndStartDrawingToPDF(uint64_t frameID, const PrintInfo&, uint32_t firstPage, PassRefPtr<Messages::WebPage::ComputePagesForPrintingAndStartDrawingToPDF::DelayedReply>);

Completed in 127 milliseconds