Searched refs:page (Results 451 - 475 of 1037) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentation.cpp48 #include "core/page/Page.h"
205 InstrumentingAgents* instrumentingAgentsFor(Page* page) argument
207 if (!page)
209 return instrumentationForPage(page);
260 InstrumentingAgents* instrumentationForPage(Page* page) argument
263 return page->inspectorController().m_instrumentingAgents.get();
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DRenderLayerCompositor.cpp38 #include "core/page/Chrome.h"
39 #include "core/page/ChromeClient.h"
40 #include "core/page/Page.h"
41 #include "core/page/scrolling/ScrollingCoordinator.h"
226 page()->animator().scheduleVisualUpdate();
880 if (Page* page = view->frame().page()) {
881 if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator())
1087 Page* page = frame.page(); local
1126 Page* page = frame.page(); local
1159 Page* RenderLayerCompositor::page() const function in class:blink::RenderLayerCompositor
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_set_archive_info.py38 # .wpr file to a list of page names it supports.
41 # Map from the page name to a relative path (as it appears in the metadata
44 # Find out the wpr file names for each page.
59 def WprFilePathForPage(self, page):
62 wpr_file = self._page_name_to_wpr_file.get(page.display_name, None)
64 # Some old page sets always use the URL to identify a page rather than the
66 wpr_file = self._page_name_to_wpr_file.get(page.url, None)
83 for page in pages:
84 self._SetWprFileForPage(page
[all...]
H A Dprofile_generator.py19 from telemetry.page import page_runner
20 from telemetry.page import profile_creator
21 from telemetry.page import test_expectations
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DresponsiveDesignView.css73 .responsive-design-page-scale-container {
82 .responsive-design-page-scale-label {
91 .responsive-design-page-scale-container .responsive-design-page-scale-button.status-bar-item {
99 .responsive-design-page-scale-container .responsive-design-page-scale-button.status-bar-item:not(:disabled):hover {
103 .responsive-design-page-scale-container .responsive-design-page-scale-button.status-bar-item > .glyph {
110 .responsive-design-page-scale-container .status-bar-item .glyph.shadow {
115 .responsive-design-page
[all...]
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text.cpp685 static void CheckRotate(CPDF_Page& page, CFX_FloatRect& page_bbox) argument
688 FX_POSITION pos = page.GetFirstObjectPosition();
690 CPDF_PageObject* pObj = page.GetNextObject(pos);
718 matrix.Set(0, -1, 1, 0, 0, page.GetPageHeight());
720 matrix.Set(-1, 0, 0, -1, page.GetPageWidth(), page.GetPageHeight());
722 matrix.Set(0, 1, -1, 0, page.GetPageWidth(), 0);
726 page.Transform(matrix);
736 CPDF_Page page; local
737 page
784 CPDF_Page page; local
[all...]
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_controller.cc40 bool IsContentsFrom(const InstantPage* page, argument
42 return page && (page->web_contents() == contents);
46 // NavigationController if the page's URL has not already been updated with the
86 // page. (NOTE: in particular, we do not send the query to NTPs.)
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalFrame.cpp54 #include "core/page/Chrome.h"
55 #include "core/page/EventHandler.h"
56 #include "core/page/FocusController.h"
57 #include "core/page/Page.h"
58 #include "core/page/scrolling/ScrollingCoordinator.h"
219 m_view->setVisibleContentScaleFactor(page()->pageScaleFactor());
240 // Subframes of the one we're printing don't lay out to the page size.
249 // Only top frame being printed should be fit to page size.
317 // We should never be detatching the page during a Layout.
330 // so page() coul
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DSpellCheckerClientImpl.cpp35 #include "core/page/Page.h"
96 if (Page* page = m_webView->page()) {
97 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.cpp62 // Don't allow page sizes we know are smaller than all common
63 // OS page sizes.
69 // A large currentPageOffset indicates a new page needs to
160 // Indicate there is no current page to allocate from.
177 tHeader* page = stack.back().page;
180 while (inUseList != page) {
242 // Do a multi-page allocation. Don't mix these with the others.
258 currentPageOffset = pageSize; // make next allocation come from a new page
260 // No guard blocks for multi-page allocation
[all...]
/external/chromium_org/tools/telemetry/build/
H A Dupdate_docs.py24 html = pydoc.html.page(pydoc.describe(module),
52 page = GenerateHTMLForModule(module)
56 f.write(page)
/external/chromium_org/tools/telemetry/telemetry/results/
H A Djson_output_formatter_unittest.py10 from telemetry.page import page_set
22 def _HasPage(pages, page):
23 return pages.get(page.id, None) != None
/external/chromium_org/tools/telemetry/telemetry/value/
H A Dscalar_unittest.py8 from telemetry.page import page_set
46 self.assertEquals(page0, vM.page)
59 self.assertEquals(None, vM.page)
H A Dstring_unittest.py8 from telemetry.page import page_set
46 self.assertEquals(page0, vM.page)
59 self.assertEquals(None, vM.page)
/external/oprofile/module/
H A Dop_dname.c94 ulong page, pos; local
102 page = kvirt_to_pa(pos);
103 if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))
/external/chromium_org/components/dom_distiller/standalone/
H A Dcontent_extractor.cc142 const DistilledPageProto& page = article_proto.pages(i); local
144 output << "URL: " << page.url() << std::endl;
145 output << "Content: " << page.html() << std::endl;
146 if (page.has_debug_info() && page.debug_info().has_log())
147 output << "Log: " << page.debug_info().log() << std::endl;
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp128 DLLEXPORT FPDF_LINK STDCALL FPDFLink_GetLinkAtPoint(FPDF_PAGE page, double x, double y) argument
130 if (page == NULL) return NULL;
131 CPDF_Page* pPage = (CPDF_Page*)page;
168 DLLEXPORT FPDF_BOOL STDCALL FPDFLink_Enumerate(FPDF_PAGE page, int* startPos, FPDF_LINK* linkAnnot) argument
170 if(!page || !startPos || !linkAnnot)
172 CPDF_Page* pPage = (CPDF_Page*)page;
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp101 #include "core/page/Chrome.h"
102 #include "core/page/ChromeClient.h"
103 #include "core/page/EventHandler.h"
104 #include "core/page/FocusController.h"
105 #include "core/page/NetworkStateNotifier.h"
106 #include "core/page/Page.h"
107 #include "core/page/PagePopupController.h"
108 #include "core/page/PrintContext.h"
216 void Internals::resetToConsistentState(Page* page) argument
218 ASSERT(page);
818 Page* page = document->page(); local
1458 Page* page = contextDocument()->frame()->page(); local
1610 Page* page = document->page(); local
1625 Page* page = document->page(); local
1719 Page* page = document->page(); local
[all...]
/external/chromium_org/chrome/browser/printing/
H A Dprint_job.h47 // usually a PrinterQuery. Set the expected page count of the print job.
182 // A new page started printing.
185 // A page is done printing.
203 JobEventDetails(Type type, PrintedDocument* document, PrintedPage* page);
207 PrintedPage* page() const;
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dproxy_settings.css5 /* These additional styles constrain the size of the proxy page to the height of
22 #proxy-page-title {
/external/chromium_org/chrome/browser/resources/
H A Dset_as_default_browser.css21 /* The page block within the outer container. */
22 #metro-setup-outer-container .page {
36 #metro-setup-outer-container .page .content-area {
56 #metro-setup-outer-container .page h1 {
67 #metro-setup-outer-container .page h2 {
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dsupervised_user_creation_screen_handler.h64 virtual void OnPageSelected(const std::string& page) = 0;
90 // Navigates to specified page.
91 void ShowPage(const std::string& page);
/external/chromium_org/printing/
H A Dprinted_document.h34 // Warning: Once a page is loaded, it cannot be replaced. Pages may be discarded
46 // Sets a page's data. 0-based. Takes metafile ownership.
56 // Retrieves a page. If the page is not available right now, it
57 // requests to have this page be rendered and returns NULL.
61 // Draws the page in the context.
64 void RenderPrintedPage(const PrintedPage& page,
67 void RenderPrintedPage(const PrintedPage& page,
120 // Array of data for each print previewed page.
145 // Page number of the first page
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorPendingAnimations.cpp37 #include "core/page/Page.h"
52 bool visible = document->page() && document->page()->visibilityState() == PageVisibilityStateVisible;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElement.cpp38 #include "core/page/Page.h"
39 #include "core/page/ValidationMessageClient.h"
421 Page* page = document().page(); local
422 if (!page)
429 ValidationMessageClient* client = &page->validationMessageClient();
463 Page* page = document().page(); local
464 if (!page)
467 return &page
[all...]

Completed in 923 milliseconds

<<11121314151617181920>>