HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 176 - 200 of 377) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 32 #include "core/page/Frame.h"
33 #include "core/page/Page.h"
263 Page* Geolocation::page() const function in class:WebCore::Geolocation
265 return document() ? document()->page() : 0;
270 Page* page = this->page(); local
271 if (page && m_allowGeolocation == InProgress
282 Page* page = this->page(); local
643 Page* page = this->page(); local
653 Page* page = this->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsAgentImpl.cpp 52 #include "core/page/Frame.h"
53 #include "core/page/FrameView.h"
54 #include "core/page/Page.h"
55 #include "core/page/PageGroup.h"
115 virtual void run(Page* page)
124 HashSet<Page*>::const_iterator end = page->group().pages().end();
125 for (HashSet<Page*>::const_iterator it = page->group().pages().begin(); it != end; ++it)
    [all...]
InspectorFrontendClientImpl.cpp 40 #include "core/page/Frame.h"
41 #include "core/page/Page.h"
51 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, WebDevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend)
WebDevToolsFrontendImpl.cpp 51 #include "core/page/ContextMenuController.h"
52 #include "core/page/DOMWindow.h"
53 #include "core/page/Frame.h"
54 #include "core/page/Page.h"
55 #include "core/page/Settings.h"
111 InspectorController* ic = m_webViewImpl->page()->inspectorController();
112 ic->setInspectorFrontendClient(adoptPtr(new InspectorFrontendClientImpl(m_webViewImpl->page(), m_client, this)));
114 // Put each DevTools frontend Page into a private group so that it's not
115 // deferred along with the inspected page
    [all...]
WebKit.cpp 42 #include "core/page/Frame.h"
43 #include "core/page/Page.h"
44 #include "core/page/Settings.h"
224 WebCore::Page::refreshPlugins(reloadPages);
WebPopupMenuImpl.h 45 class Page;
WebPagePopupImpl.cpp 45 #include "core/page/Chrome.h"
46 #include "core/page/DOMWindowPagePopup.h"
47 #include "core/page/EventHandler.h"
48 #include "core/page/FocusController.h"
49 #include "core/page/FrameView.h"
50 #include "core/page/Page.h"
51 #include "core/page/PagePopupClient.h"
52 #include "core/page/Settings.h"
192 Page::PageClients pageClients
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 141 idesc64 isrL, 0x0008, 0 ; 0x0E, 14, #PF, Page Fault
180 dw isrR, 0 ; 0x0E, 14, #PF, Page Fault
192 ;; 2 Meg Page Tables
195 SECTION PAGE ALIGN=4096 FLAT
  /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/Frame.h"
32 #include "core/page/FrameTree.h"
33 #include "core/page/Page.h"
34 #include "core/page/PageGroupLoadDeferrer.h"
35 #include "core/page/PopupOpeningObserver.h"
36 #include "core/page/WindowFeatures.h"
51 Chrome::Chrome(Page* page, ChromeClient* client
    [all...]
DOMWindow.h 32 #include "core/page/FrameDestructionObserver.h"
62 class Page;
110 static FloatRect adjustWindowRect(Page*, const FloatRect& pendingChanges);
378 Page* page();
make_settings.pl 391 class Page;
395 explicit InternalSettingsGenerated(Page*);
412 Page* m_page;
451 #include "core/page/Page.h"
452 #include "core/page/Settings.h"
456 InternalSettingsGenerated::InternalSettingsGenerated(Page* page)
457 : m_page(page)
468 print $file " , m_$settingName(page->settings()->$settingName())\n"
    [all...]
FrameView.cpp 28 #include "core/page/FrameView.h"
47 #include "core/page/Chrome.h"
48 #include "core/page/ChromeClient.h"
49 #include "core/page/EventHandler.h"
50 #include "core/page/FocusController.h"
51 #include "core/page/Frame.h"
52 #include "core/page/FrameActionScheduler.h"
53 #include "core/page/FrameTree.h"
54 #include "core/page/Settings.h"
55 #include "core/page/animation/AnimationController.h
432 Page* page = m_frame ? m_frame->page() : 0; local
526 Page* page = frame() ? frame()->page() : 0; local
1618 Page* page = frame() ? frame()->page() : 0; local
1644 Page* page = frame() ? frame()->page() : 0; local
1720 Page* page = m_frame->page(); local
1731 Page* page = m_frame->page(); local
2200 Page* page = m_frame->page(); local
2461 Page* page = frame()->page(); local
2489 Page* page = frame() ? frame()->page() : 0; local
2581 Page* page = m_frame->page(); local
2593 Page* page = m_frame->page(); local
2613 Page* page = m_frame->page(); local
2649 Page* page = m_frame->page(); local
    [all...]
AutoscrollController.cpp 29 #include "core/page/AutoscrollController.h"
31 #include "core/page/EventHandler.h"
32 #include "core/page/Frame.h"
33 #include "core/page/FrameView.h"
34 #include "core/page/Page.h"
146 Page* page = scrollable->frame() ? scrollable->frame()->page() : 0; local
147 if (!page) {
174 Page* page = frame->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 33 #include "core/page/FrameView.h"
34 #include "core/page/Settings.h"
57 OwnPtr<Page> currentPage = m_page.release();
61 // Verify that page teardown destroyed the Chrome
329 Page::PageClients pageClients;
340 m_page = adoptPtr(new Page(pageClients));
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.cpp 34 #include "core/page/Frame.h"
41 void fillWithEmptyClients(Page::PageClients& pageClients)
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
scroll_unittest.py 6 from telemetry.page import page as page_module
7 from telemetry.page.actions import scroll
16 page = page_module.Page(
18 None, # In this test, we don't need a page set.
21 self._tab.Navigate(page.url)
24 return page
27 page = self.CreateAndNavigateToPageFromUnittestDataDir(
32 # Make page bigger than window so it's scrollable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 89 #include "core/page/Chrome.h"
90 #include "core/page/ChromeClient.h"
91 #include "core/page/DOMPoint.h"
92 #include "core/page/DOMWindow.h"
93 #include "core/page/EventHandler.h"
94 #include "core/page/Frame.h"
95 #include "core/page/FrameView.h"
96 #include "core/page/Page.h"
97 #include "core/page/PagePopupController.h
909 Page* page = document->page(); local
938 Page* page = document->page(); local
1452 Page* page = contextDocument()->frame()->page(); local
1477 Page* page = contextDocument()->frame()->page(); local
1501 Page* page = contextDocument()->frame()->page(); local
1670 Page* page = document->page(); local
1684 Page* page = document->page(); local
1803 Page* page = document->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
PageScriptDebugServer.cpp 42 #include "core/page/Frame.h"
43 #include "core/page/Page.h"
79 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page)
81 ScriptController* scriptController = page->mainFrame()->script();
95 m_listenersMap.set(page, listener);
112 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page)
114 if (!m_listenersMap.contains(page))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.h 47 Page,
63 bool isPageRule() const { return type() == Page; }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.cpp 43 #include "core/page/Page.h"
44 #include "core/page/PageGroup.h"
45 #include "core/page/Settings.h"
46 #include "core/page/UserContentURLPattern.h"
113 Page* owningPage = m_document->page();
165 Page* owningPage = m_document->page();
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlsChromium.cpp 54 if (!document->page())
112 if (document->page()->theme()->supportsClosedCaptioning()) {
154 Page* page = document()->page(); local
155 if (!page)
159 m_durationDisplay->setInnerText(page->theme()->formatMediaControlsTime(duration), ASSERT_NO_EXCEPTION);
178 Page* page = document()->page(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 35 #include "core/page/Chrome.h"
36 #include "core/page/EventHandler.h"
37 #include "core/page/Frame.h"
38 #include "core/page/FrameView.h"
39 #include "core/page/Page.h"
84 void ConvertInspectorPoint(WebCore::Page* page, const WebCore::IntPoint& point, WebCore::IntPoint* convertedPoint, WebCore::IntPoint* globalPoint)
86 *convertedPoint = page->mainFrame()->view()->convertToContainingWindow(point);
87 *globalPoint = page->chrome().rootViewToScreen(WebCore::IntRect(point, WebCore::IntSize(0, 0))).location()
    [all...]
InspectorTimelineAgent.h 64 class Page;
260 Page* page();
  /external/chromium_org/tools/telemetry/telemetry/page/
page.py 41 class Page(object):
54 # These attributes can be set dynamically by the page.
93 # A version of this page's URL that's safe to use as a filename.
116 Page.WaitForPageToLoad(self, tab, timeout, poll_interval)
118 # TODO(dtu): Remove this method when no page sets use a click interaction
  /packages/experimental/PrintApp/src/foo/bar/print/
PrintActivity.java 26 import android.graphics.pdf.PdfDocument.Page;
184 // Write the page only if it was requested.
187 Page page = mPdfDocument.startPage(i);
188 // The page of the PDF backed canvas size is in pixels (1/72") and
193 page.getCanvas().scale(scale, scale);
194 view.draw(page.getCanvas());
195 mPdfDocument.finishPage(page);
264 private boolean containsPage(PageRange[] pageRanges, int page) {
267 if (pageRanges[i].getStart() <= page
    [all...]

Completed in 1392 milliseconds

1 2 3 4 5 6 78 91011>>