Searched refs:pageIndex (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPageRuleCollector.h35 PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex);
41 bool isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const;
42 bool isRightPage(const RenderStyle* rootElementStyle, int pageIndex) const { return !isLeftPage(rootElementStyle, pageIndex); }
43 bool isFirstPage(int pageIndex) const;
44 String pageName(int pageIndex) const;
H A DPageRuleCollector.cpp43 bool PageRuleCollector::isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const
50 return (pageIndex + (isFirstPageLeft ? 1 : 0)) % 2;
53 bool PageRuleCollector::isFirstPage(int pageIndex) const
56 return (!pageIndex);
59 String PageRuleCollector::pageName(int /* pageIndex */) const
65 PageRuleCollector::PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex) argument
66 : m_isLeftPage(isLeftPage(rootElementStyle, pageIndex))
67 , m_isFirstPage(isFirstPage(pageIndex))
68 , m_pageName(pageName(pageIndex)) { }
/external/chromium_org/ui/app_list/cocoa/
H A Dapps_grid_controller.h61 - (NSCollectionView*)collectionViewAtPageIndex:(size_t)pageIndex;
82 - (void)scrollToPage:(size_t)pageIndex;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.h115 PassRefPtr<RenderStyle> styleForPage(int pageIndex);
261 bool isLeftPage(int pageIndex) const;
262 bool isRightPage(int pageIndex) const { return !isLeftPage(pageIndex); }
263 bool isFirstPage(int pageIndex) const;
264 String pageName(int pageIndex) const;
H A DStyleResolver.cpp836 PassRefPtr<RenderStyle> StyleResolver::styleForPage(int pageIndex) argument
849 PageRuleCollector collector(rootElementStyle, pageIndex);
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dpage_list_view.js379 var pageIndex = app.page_index || 0;
380 while (pageIndex >= this.appsPages.length) {
397 this.appsPages[pageIndex].insertApp(app, false);
434 var pageIndex = appData.page_index || 0;
436 if (pageIndex >= this.appsPages.length) {
437 while (pageIndex >= this.appsPages.length) {
445 var page = this.appsPages[pageIndex];
H A Dapps_page.js729 var pageIndex = ntp.getAppsPageIndex(this);
730 chrome.send('generateAppForLink', [data.url, data.title, pageIndex]);
738 var pageIndex = ntp.getAppsPageIndex(this);
739 chrome.send('setPageIndex', [draggedTile.firstChild.appId, pageIndex]);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRemoteFrameImpl.h135 virtual bool hasCustomPageSizeStyle(int pageIndex) OVERRIDE;
136 virtual bool isPageBoxVisible(int pageIndex) OVERRIDE;
138 int pageIndex,
144 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) OVERRIDE;
H A DWebLocalFrameImpl.h184 virtual bool hasCustomPageSizeStyle(int pageIndex) OVERRIDE;
185 virtual bool isPageBoxVisible(int pageIndex) OVERRIDE;
187 int pageIndex,
193 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) OVERRIDE;
H A DWebRemoteFrameImpl.cpp682 bool WebRemoteFrameImpl::hasCustomPageSizeStyle(int pageIndex) argument
688 bool WebRemoteFrameImpl::isPageBoxVisible(int pageIndex) argument
695 int pageIndex,
705 WebString WebRemoteFrameImpl::pageProperty(const WebString& propertyName, int pageIndex) argument
694 pageSizeAndMarginsInPixels( int pageIndex, WebSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
H A DWebLocalFrameImpl.cpp351 for (size_t pageIndex = 0; pageIndex < numPages; pageIndex++) {
353 if (pageIndex > 0) {
367 float scale = getPageShrink(pageIndex);
370 spoolPage(graphicsContext, pageIndex);
1324 bool WebLocalFrameImpl::hasCustomPageSizeStyle(int pageIndex) argument
1326 return frame()->document()->styleForPage(pageIndex)->pageSizeType() != PAGE_SIZE_AUTO;
1329 bool WebLocalFrameImpl::isPageBoxVisible(int pageIndex) argument
1331 return frame()->document()->isPageBoxVisible(pageIndex);
1334 pageSizeAndMarginsInPixels(int pageIndex, WebSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
1341 pageProperty(const WebString& propertyName, int pageIndex) argument
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrame.h507 virtual bool isPageBoxVisible(int pageIndex) = 0;
510 virtual bool hasCustomPageSizeStyle(int pageIndex) = 0;
516 virtual void pageSizeAndMarginsInPixels(int pageIndex,
525 virtual WebString pageProperty(const WebString& propertyName, int pageIndex) = 0;
/external/libcxxabi/src/Unwind/
H A DUnwindCursor.hpp943 UnwindSectionRegularArray<A> pageIndex(
955 if (pageIndex.functionOffset(mid) <= targetFunctionOffset) {
961 } else if (pageIndex.functionOffset(mid + 1) > targetFunctionOffset) {
964 funcEnd = pageIndex.functionOffset(low + 1) + sects.dso_base;
973 encoding = pageIndex.encoding(low);
974 funcStart = pageIndex.functionOffset(low) + sects.dso_base;
995 UnwindSectionCompressedArray<A> pageIndex(
1010 if (pageIndex.functionOffset(mid) <= targetFunctionPageOffset) {
1012 (pageIndex.functionOffset(mid + 1) > targetFunctionPageOffset)) {
1022 funcStart = pageIndex
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/
H A Dpreview_generator.js358 var pageNumber = event.pageIndex + 1;
363 this.dispatchPreviewStartEvent_(event.previewUid, event.pageIndex);
H A Dnative_layer.js611 pagePreviewGenEvent.pageIndex = pageNumber;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.h466 PassRefPtr<RenderStyle> styleForPage(int pageIndex);
471 bool isPageBoxVisible(int pageIndex);
477 void pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft);
H A DDocument.cpp2001 PassRefPtr<RenderStyle> Document::styleForPage(int pageIndex) argument
2004 return ensureStyleResolver().styleForPage(pageIndex);
2007 bool Document::isPageBoxVisible(int pageIndex) argument
2009 return styleForPage(pageIndex)->visibility() != HIDDEN; // display property doesn't apply to @page.
2012 void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
2014 RefPtr<RenderStyle> style = styleForPage(pageIndex);
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.idl191 [RaisesException] DOMString pageSizeAndMarginsInPixels(long pageIndex, long width, long height, long marginTop, long marginRight, long marginBottom, long marginLeft);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 4704 milliseconds