/external/chromium/chrome/browser/resources/ntp4/ |
D | new_tab.js | 261 var pageIndex = (app.page_index || 0); 262 while (pageIndex >= appsPages.length) { 270 appsPages[pageIndex].appendApp(app); 568 var pageIndex = cardSlider.currentCard; 569 assert(pageIndex >= 0 && pageIndex < appsPages.length, 571 if (appsPages[pageIndex] != draggingAppOriginalPage) 572 chrome.send('setPageIndex', [appId, pageIndex]);
|
/external/chromium/chrome/browser/resources/touch_ntp/ |
D | newtab.js | 270 var pageIndex = (app.page_index || 0); 271 while (pageIndex >= appsPages.length) { 278 appendApp(appsPages[pageIndex], app); 678 var pageIndex = slider.currentCard; 679 assert(pageIndex >= 0 && pageIndex < appsPages.length, 681 if (appsPages[pageIndex] != draggingAppOriginalPage) 682 chrome.send('setPageIndex', [appId, pageIndex]);
|
/external/webkit/Source/WebCore/css/ |
D | CSSStyleSelector.h | 107 PassRefPtr<RenderStyle> styleForPage(int pageIndex); 223 bool isLeftPage(int pageIndex) const; 224 bool isRightPage(int pageIndex) const { return !isLeftPage(pageIndex); } in isRightPage() argument 225 bool isFirstPage(int pageIndex) const; 226 String pageName(int pageIndex) const;
|
D | CSSStyleSelector.cpp | 1708 PassRefPtr<RenderStyle> CSSStyleSelector::styleForPage(int pageIndex) in styleForPage() argument 1715 const bool isLeft = isLeftPage(pageIndex); in styleForPage() 1716 const bool isFirst = isFirstPage(pageIndex); in styleForPage() 1717 const String page = pageName(pageIndex); in styleForPage() 3434 bool CSSStyleSelector::isLeftPage(int pageIndex) const in isLeftPage() 3440 return (pageIndex + (isFirstPageLeft ? 1 : 0)) % 2; in isLeftPage() 3443 bool CSSStyleSelector::isFirstPage(int pageIndex) const in isFirstPage() 3446 return (!pageIndex); in isFirstPage()
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundle.cpp | 166 …ndMarginsInPixels(WKBundleRef bundleRef, WKBundleFrameRef frameRef, int pageIndex, int width, int … in WKBundlePageSizeAndMarginsInPixels() argument 168 …return toCopiedAPI(toImpl(bundleRef)->pageSizeAndMarginsInPixels(toImpl(frameRef), pageIndex, widt… in WKBundlePageSizeAndMarginsInPixels() 171 …PORT bool WKBundleIsPageBoxVisible(WKBundleRef bundleRef, WKBundleFrameRef frameRef, int pageIndex) in WKBundleIsPageBoxVisible() argument 173 return toImpl(bundleRef)->isPageBoxVisible(toImpl(frameRef), pageIndex); in WKBundleIsPageBoxVisible()
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
D | InjectedBundle.cpp | 179 String InjectedBundle::pageSizeAndMarginsInPixels(WebFrame* frame, int pageIndex, int width, int he… in pageSizeAndMarginsInPixels() argument 185 …return PrintContext::pageSizeAndMarginsInPixels(coreFrame, pageIndex, width, height, marginTop, ma… in pageSizeAndMarginsInPixels() 188 bool InjectedBundle::isPageBoxVisible(WebFrame* frame, int pageIndex) in isPageBoxVisible() argument 194 return PrintContext::isPageBoxVisible(coreFrame, pageIndex); in isPageBoxVisible()
|
/external/webkit/Source/WebCore/page/ |
D | PrintContext.cpp | 354 for (size_t pageIndex = 0; pageIndex < pageRects.size(); pageIndex++) { in spoolAllPagesWithBoundaries() local 356 if (pageIndex > 0) { in spoolAllPagesWithBoundaries() 367 printContext.spoolPage(graphicsContext, pageIndex, pageWidth); in spoolAllPagesWithBoundaries()
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
D | LayoutTestController.h | 120 …JSRetainPtr<JSStringRef> pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int marg… 121 bool isPageBoxVisible(int pageIndex);
|
D | LayoutTestController.cpp | 341 JSRetainPtr<JSStringRef> LayoutTestController::pageSizeAndMarginsInPixels(int pageIndex, int width,… in pageSizeAndMarginsInPixels() argument 344 …ageSizeAndMarginsInPixels(InjectedBundle::shared().bundle(), mainFrame, pageIndex, width, height, … in pageSizeAndMarginsInPixels() 347 bool LayoutTestController::isPageBoxVisible(int pageIndex) in isPageBoxVisible() argument 350 return WKBundleIsPageBoxVisible(InjectedBundle::shared().bundle(), mainFrame, pageIndex); in isPageBoxVisible()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.h | 184 static bool isPageBoxVisible(QWebFrame* frame, int pageIndex); in Q_DECLARE_METATYPE() 186 …static QString pageSizeAndMarginsInPixels(QWebFrame* frame, int pageIndex, int width, int height, … in Q_DECLARE_METATYPE()
|
D | DumpRenderTreeSupportQt.cpp | 904 bool DumpRenderTreeSupportQt::isPageBoxVisible(QWebFrame* frame, int pageIndex) in isPageBoxVisible() argument 907 return coreFrame->document()->isPageBoxVisible(pageIndex); in isPageBoxVisible() 910 QString DumpRenderTreeSupportQt::pageSizeAndMarginsInPixels(QWebFrame* frame, int pageIndex, int wi… in pageSizeAndMarginsInPixels() argument 913 return PrintContext::pageSizeAndMarginsInPixels(coreFrame, pageIndex, width, height, in pageSizeAndMarginsInPixels()
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
D | LayoutTestController.idl | 71 …DOMString pageSizeAndMarginsInPixels(in int pageIndex, in int width, in int height, in int marginT… 72 boolean isPageBoxVisible(in int pageIndex);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | LayoutTestControllerQt.h | 255 bool isPageBoxVisible(int pageIndex); 256 …QString pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int marginTop, int margin…
|
D | LayoutTestControllerQt.cpp | 825 bool LayoutTestController::isPageBoxVisible(int pageIndex) in isPageBoxVisible() argument 827 return DumpRenderTreeSupportQt::isPageBoxVisible(m_drt->webPage()->mainFrame(), pageIndex); in isPageBoxVisible() 830 QString LayoutTestController::pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int … in pageSizeAndMarginsInPixels() argument 832 …eturn DumpRenderTreeSupportQt::pageSizeAndMarginsInPixels(m_drt->webPage()->mainFrame(), pageIndex, in pageSizeAndMarginsInPixels()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebFrame.h | 461 virtual bool isPageBoxVisible(int pageIndex) = 0; 467 virtual void pageSizeAndMarginsInPixels(int pageIndex,
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebFrameImpl.h | 173 virtual bool isPageBoxVisible(int pageIndex); 174 virtual void pageSizeAndMarginsInPixels(int pageIndex,
|
D | WebFrameImpl.cpp | 1443 bool WebFrameImpl::isPageBoxVisible(int pageIndex) in isPageBoxVisible() argument 1445 return frame()->document()->isPageBoxVisible(pageIndex); in isPageBoxVisible() 1448 void WebFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, in pageSizeAndMarginsInPixels() argument 1456 frame()->document()->pageSizeAndMarginsInPixels(pageIndex, in pageSizeAndMarginsInPixels()
|
/external/webkit/Tools/WinLauncher/ |
D | PrintWebUIDelegate.cpp | 165 /* [in] */ UINT pageIndex, in drawFooterInRect() argument
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebPDFView.mm | 784 unsigned int pageIndex = [[PDFSubview document] indexForPage:[PDFSubview currentPage]]; 785 [state addObject:[NSNumber numberWithUnsignedInt:pageIndex]]; 803 unsigned int pageIndex = [[state objectAtIndex:i++] unsignedIntValue]; 804 [PDFSubview goToPage:[[PDFSubview document] pageAtIndex:pageIndex]]; 1480 NSUInteger pageIndex; 1481 for (pageIndex = firstVisiblePageIndex; pageIndex <= lastVisiblePageIndex; ++pageIndex) 1482 [result addObject:[pdfDocument pageAtIndex:pageIndex]];
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebInspectorDelegate.h | 271 /* [in] */ UINT pageIndex, in drawFooterInRect() argument
|
/external/webkit/Source/WebCore/dom/ |
D | Document.h | 528 PassRefPtr<RenderStyle> styleForPage(int pageIndex); 533 bool isPageBoxVisible(int pageIndex); 539 …void pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight…
|
D | Document.cpp | 1628 PassRefPtr<RenderStyle> Document::styleForPage(int pageIndex) in styleForPage() argument 1630 RefPtr<RenderStyle> style = styleSelector()->styleForPage(pageIndex); in styleForPage() 1648 bool Document::isPageBoxVisible(int pageIndex) in isPageBoxVisible() argument 1650 RefPtr<RenderStyle> style = styleForPage(pageIndex); in isPageBoxVisible() 1654 void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& ma… in pageSizeAndMarginsInPixels() argument 1656 RefPtr<RenderStyle> style = styleForPage(pageIndex); in pageSizeAndMarginsInPixels()
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | UIDelegate.h | 278 /* [in] */ UINT pageIndex,
|
D | UIDelegate.cpp | 331 /* [in] */ UINT pageIndex, in drawFooterInRect() argument
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | IWebUIDelegate.idl | 745 …ew* webView, [in] RECT* rect, [in] OLE_HANDLE drawingContext, [in] UINT pageIndex, [in] UINT pageC…
|