HomeSort by relevance Sort by last modified time
    Searched refs:page (Results 1351 - 1375 of 3073) sorted by null

<<51525354555657585960>>

  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 23 #include "core/page/Chrome.h"
30 #include "core/page/ChromeClient.h"
31 #include "core/page/FrameTree.h"
32 #include "core/page/Page.h"
33 #include "core/page/PopupOpeningObserver.h"
34 #include "core/page/ScopedPageLoadDeferrer.h"
35 #include "core/page/WindowFeatures.h"
50 Chrome::Chrome(Page* page, ChromeClient* client
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_web_ui.cc 69 // Reloads the page in |web_contents| if it uses the same profile as |profile|
71 void UnregisterAndReplaceOverrideForWebContents(const std::string& page,
78 if (!url.SchemeIs(content::kChromeUIScheme) || url.host() != page)
347 void ExtensionWebUI::UnregisterAndReplaceOverride(const std::string& page,
357 base::Bind(&UnregisterAndReplaceOverrideForWebContents, page, profile);
363 void ExtensionWebUI::UnregisterChromeURLOverride(const std::string& page,
372 if (!all_overrides->GetList(page, &page_overrides)) {
377 UnregisterAndReplaceOverride(page, profile, page_overrides, override);
391 const std::string& page = iter->first; local
393 if (!all_overrides->GetList(page, &page_overrides))
    [all...]
  /external/clang/utils/
FindSpecRefs 605 for (name,page) in data[1]:
614 page = int(page) + offset
616 page = 1
626 best = (dist, (section, name, page))
867 section,name,page = tocEntry
869 if page is not None:
870 linkStr = '<a href="%s#page=%d">%s</a> (pg.%d)'%(docData[0],page,components,page)
    [all...]
  /external/yaffs2/yaffs2/
yaffs_fs.c 58 #define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags)
165 static int yaffs_readpage(struct file *file, struct page *page);
167 static int yaffs_writepage(struct page *page, struct writeback_control *wbc);
169 static int yaffs_writepage(struct page *page);
171 static int yaffs_prepare_write(struct file *f, struct page *pg,
173 static int yaffs_commit_write(struct file *f, struct page *pg, unsigned offset
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_window.cc 150 std::string page = chrome::kChromeUIUserManagerURL;
153 page += "#tutorial";
159 page += "#";
160 page += base::IntToString(index);
164 callback.Run(guest_profile, page);
  /external/chromium_org/components/dom_distiller/content/
dom_distiller_viewer_source.cc 31 // the current main frame's page in the Viewer instance.
94 // Whether the page is sufficiently initialized to handle updates from the
98 // Temporary store of pending JavaScript if the page isn't ready to receive
141 // In-page navigations, as well as the main view request can be ignored.
192 // This is a single-page article.
202 const DistilledPageProto& page = article_proto->pages(page_count_); local
205 &page,
217 const DistilledPageProto& page = local
220 // This is the first page, so send Viewer page scaffolding too
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 37 #include "core/page/Chrome.h"
38 #include "core/page/EventHandler.h"
39 #include "core/page/Page.h"
82 void ConvertInspectorPoint(WebCore::Page* page, const WebCore::IntPoint& point, WebCore::IntPoint* convertedPoint, WebCore::IntPoint* globalPoint)
84 *convertedPoint = page->deprecatedLocalMainFrame()->view()->convertToContainingWindow(point);
85 *globalPoint = page->chrome().rootViewToScreen(WebCore::IntRect(point, WebCore::IntSize(0, 0))).location();
92 InspectorInputAgent::InspectorInputAgent(Page* page, InspectorClient* client
    [all...]
InspectorInstrumentation.cpp 198 InstrumentingAgents* instrumentingAgentsFor(Page* page)
200 if (!page)
202 return instrumentationForPage(page);
253 InstrumentingAgents* instrumentationForPage(Page* page)
256 return page->inspectorController().m_instrumentingAgents.get();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
RenderLayerCompositor.cpp 39 #include "core/page/Chrome.h"
40 #include "core/page/Page.h"
41 #include "core/page/scrolling/ScrollingCoordinator.h"
206 // TODO: Figure out why this fails on Chrome OS login page. crbug.com/365507
234 page()->animator().scheduleVisualUpdate();
1152 Page* page = frame.page(); local
1191 Page* page = frame.page(); local
1224 Page* RenderLayerCompositor::page() const function in class:WebCore::RenderLayerCompositor
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set_archive_info_unittest.py 9 from telemetry.page import cloud_storage
10 from telemetry.page import page namespace
11 from telemetry.page import page_set_archive_info
14 class MockPage(page.Page):
116 # Write only the page set without the corresponding metadata file.
profile_generator.py 17 from telemetry.page import page_runner
18 from telemetry.page import profile_creator
19 from telemetry.page import test_expectations
  /external/chromium_org/tools/telemetry/telemetry/
test.py 16 from telemetry.page import page_runner
17 from telemetry.page import cloud_storage
18 from telemetry.page import page_set
19 from telemetry.page import page_test
20 from telemetry.page import test_expectations
180 """Get the page set this test will run on.
182 By default, it will create a page set from the file at this test's
183 page_set attribute. Override to generate a custom page set.
  /external/chromium_org/tools/telemetry/telemetry/web_perf/
timeline_based_measurement_unittest.py 12 from telemetry.page import page_measurement_unittest_base
13 from telemetry.page import page_set
14 from telemetry.page import page as page_module
16 from telemetry.page.actions.all_page_actions import *
104 class TestTimelinebasedMeasurementPage(page_module.Page):
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
PdfManipulationService.java 105 PdfRenderer.Page page = mRenderer.openPage(pageIndex); local
107 final int srcWidthPts = page.getWidth();
108 final int srcHeightPts = page.getHeight();
152 Log.i(LOG_TAG, "Rendering page:" + pageIndex);
156 page.render(bitmap, clip, matrix, PdfRenderer.Page.RENDER_MODE_FOR_DISPLAY);
158 page.close();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutWindowCoordinator.java 83 * page when the coordinator is first started
188 * Checks the maximized state of the page and updates internal state if
199 * @param page the active workbench page
202 public boolean syncMaximizedState(IWorkbenchPage page) {
203 boolean maximized = isPageZoomed(page);
212 private boolean isPageZoomed(IWorkbenchPage page) {
213 IWorkbenchPartReference reference = page.getActivePartReference();
215 int state = page.getPartState(reference);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 95 #include "core/page/Chrome.h"
96 #include "core/page/ChromeClient.h"
97 #include "core/page/EventHandler.h"
98 #include "core/page/FocusController.h"
99 #include "core/page/NetworkStateNotifier.h"
100 #include "core/page/Page.h"
101 #include "core/page/PagePopupController.h"
102 #include "core/page/PrintContext.h"
181 void Internals::resetToConsistentState(Page* page
897 Page* page = document->page(); local
1572 Page* page = contextDocument()->frame()->page(); local
1799 Page* page = document->page(); local
1813 Page* page = document->page(); local
1915 Page* page = document->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PinchViewportTest.cpp 178 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
218 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
231 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
283 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
328 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
380 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
483 EXPECT_SIZE_EQ(IntSize(0, 0), frame()->page()->frameHost().pinchViewport().size());
490 EXPECT_SIZE_EQ(IntSize(200, 300), frame()->page()->frameHost().pinchViewport().size());
502 PinchViewport& pinchViewport = frame()->page()->frameHost().pinchViewport();
527 // Test that the HistoryItem for the page stores the pinch viewport's offset and scale
    [all...]
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 685 static void CheckRotate(CPDF_Page& page, CFX_FloatRect& page_bbox)
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.Load(pDoc, pPage);
784 CPDF_Page page; local
    [all...]
  /external/chromium_org/third_party/readability/js/
readability.js 59 positive: /article|body|content|entry|hentry|main|page|pagination|post|text|blog|story/i,
92 /* Make sure this document is added to the list of parsed pages first, so we don't double up on the first page */
95 /* Pull out any possible next page link first */
114 "<p>Sorry, readability was unable to parse this page for content. If you feel like it should have been able to, please <a href='http://code.google.com/p/arc90labs-readability/issues/entry'>let us know by submitting an issue.</a></p>",
115 (readability.frameHack ? "<p><strong>It appears this page uses frames.</strong> Unfortunately, browser security properties often cause Readability to fail on pages that include frames." : ""),
116 "<p>Also, please note that Readability does not play very nicely with front pages. Readability is intended to work on articles with a sizable chunk of text that you'd like to read comfortably. If you're using Readability on a landing page (like nytimes.com for example), please click into an article first before using Readability.</p>"
149 * If someone tries to use Readability on a site's root page, give them a warning about usage.
156 "If you'd like to try rendering this page anyway, <a onClick='javascript:document.getElementById(\"readability-warning\").style.display=\"none\";document.getElementById(\"readability-content\").style.display=\"block\";'>click here</a> to continue.";
252 "<a href='#' onclick='return window.location.reload()' title='Reload original page' id='reload-page'>Reload Original Page</a>"
535 var page = null; variable
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
instant_controller.cc 43 bool IsContentsFrom(const InstantPage* page,
45 return page && (page->contents() == contents);
49 // NavigationController if the page's URL has not already been updated with the
89 // page. (NOTE: in particular, we do not send the query to NTPs.)
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 38 #include "core/page/WindowFocusAllowedIndicator.h"
89 if (!toDocument(executionContext())->page())
164 ASSERT(toDocument(context)->page());
172 ASSERT(toDocument(context)->page());
  /external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.cpp 35 #include "core/page/Page.h"
98 if (Page* page = m_webView->page()) {
99 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree().traverseNext()) {
WebDevToolsFrontendImpl.cpp 49 #include "core/page/ContextMenuController.h"
50 #include "core/page/Page.h"
100 m_webViewImpl->page()->inspectorController().setInspectorFrontendClient(adoptPtr(new InspectorFrontendClientImpl(m_webViewImpl->page(), m_client, this)));
124 Document* document = m_webViewImpl->page()->deprecatedLocalMainFrame()->document();
147 // The frame might have navigated away from the front-end page (which is still weird),
  /external/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 61 // Don't allow page sizes we know are smaller than all common
62 // OS page sizes.
68 // A large currentPageOffset indicates a new page needs to
159 // Indicate there is no current page to allocate from.
176 tHeader* page = stack.back().page;
179 while (inUseList != page) {
241 // Do a multi-page allocation. Don't mix these with the others.
257 currentPageOffset = pageSize; // make next allocation come from a new page
259 // No guard blocks for multi-page allocations (yet
    [all...]
  /external/oprofile/module/
op_dname.c 94 ulong page, pos; local
102 page = kvirt_to_pa(pos);
103 if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))

Completed in 669 milliseconds

<<51525354555657585960>>