HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 226 - 250 of 420) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/page/
Chrome.cpp 37 #include "Page.h"
58 Chrome::Chrome(Page* page, ChromeClient* client)
59 : m_page(page)
178 Page* Chrome::createWindow(Frame* frame, const FrameLoadRequest& request, const WindowFeatures& features, const NavigationAction& action) const
180 Page* newPage = m_client->createWindow(frame, request, features, action);
Geolocation.h 90 Page* page() const;
ContextMenuController.cpp 58 #include "Page.h"
76 ContextMenuController::ContextMenuController(Page* page, ContextMenuClient* client)
77 : m_page(page)
81 ASSERT_ARG(page, page);
160 if (Page* oldPage = frame->page()) {
162 if (Page* newPage = oldPage->chrome()->createWindow(frame, request, WindowFeatures(), NavigationAction())) {
249 if (Page* page = frame->page()
    [all...]
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
FrameLoaderClientWinCE.cpp 36 #include "Page.h"
175 void FrameLoaderClientWinCE::didTransferChildFrameToNewDocument(Page*)
179 void FrameLoaderClientWinCE::transferLoadingResourceFromPage(unsigned long, DocumentLoader*, const WebCore::ResourceRequest&, Page*)
627 Page* page = m_frame->page(); local
628 ASSERT(page);
630 bool isMainFrame = m_frame == page->mainFrame();
ChromeClientWinCE.h 57 // Frame wants to create the new Page. Also, the newly created window
59 // created Page has its show method called.
60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/oprofile/events/x86-64/family10/
unit_masks 79 0x01 DCT0 Page hit
80 0x02 DCT0 Page miss
81 0x04 DCT0 Page conflict
82 0x08 DCT1 Page hit
83 0x10 DCT1 Page miss
84 0x20 DCT1 Page Conflict
86 0x01 DCT0 Page Table Overflow
87 0x02 DCT1 Page Table Overflow
122 0x04 TLB fill (page table walks)
129 0x04 TLB page table wal
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.h 123 typedef HashMap<Page*, ListenerSet*> PageListenersMap;
  /external/webkit/Source/WebCore/editing/
SpellChecker.cpp 36 #include "Page.h"
59 Page* page = m_frame->page(); local
60 if (!page)
62 return page->editorClient()->textChecker();
  /external/webkit/Source/WebCore/html/
HTMLVideoElement.cpp 39 #include "Page.h"
124 Page* page = document() ? document()->page() : 0; local
125 if (!page)
133 if (page->chrome()->client()->supportsFullScreenForElement(this, false))
137 return page->chrome()->client()->supportsFullscreenForNode(this);
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendHost.cpp 47 #include "Page.h"
120 InspectorFrontendHost::InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage)
InspectorProfilerAgent.cpp 42 #include "Page.h"
66 PassOwnPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorConsoleAgent* consoleAgent, Page* inspectedPage, InspectorState* inspectorState)
71 InspectorProfilerAgent::InspectorProfilerAgent(InstrumentingAgents* instrumentingAgents, InspectorConsoleAgent* consoleAgent, Page* inspectedPage, InspectorState* inspectorState)
  /external/webkit/Source/WebCore/storage/
StorageNamespaceImpl.cpp 40 #include "Page.h"
148 void StorageNamespaceImpl::clear(Page* page)
157 // if there is no page provided, then the user tried to clear storage
161 it->second->clear(page ? page->mainFrame() : 0);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 76 // Frame wants to create the new Page. Also, the newly created window
78 // created Page has its show method called.
79 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 60 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.h 63 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
  /external/webkit/Source/WebKit/win/
WebKitDLL.cpp 35 #include <WebCore/Page.h>
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 33 #import <WebCore/Page.h>
64 Page* page = webPage->corePage();
65 if (!page)
69 int backCount = page->backForward()->backCount();
73 HistoryItem* historyItem = page->backForward()->itemAtIndex(-backIndex);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp 35 #include <WebCore/Page.h>
237 m_pageOverlayLayer->setName("LayerTreeHost page overlay content");
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebinspector.cpp 34 #include "Page.h"
61 * /<!-- -->* load some data or reload to be able to inspect the page*<!-- -->/
99 WebCore::Page* page; member in struct:_WebKitWebInspectorPrivate
356 WebCore::InspectorController* controller = priv->page->inspectorController();
368 WebCore::InspectorController* controller = priv->page->inspectorController();
395 g_value_set_boolean(value, priv->page->inspectorController()->profilerEnabled());
401 g_value_set_boolean(value, priv->page->inspectorController()->timelineProfilerEnabled());
474 webkit_web_inspector_set_inspector_client(WebKitWebInspector* web_inspector, WebCore::Page* page)
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm 50 #import <WebCore/Page.h>
62 ASSERT(frame->page());
63 return (WebHTMLView*)[[kit(frame->page()->mainFrame()) frameView] documentView];
WebFrameLoaderClient.h 203 virtual void didTransferChildFrameToNewDocument(WebCore::Page* oldPage);
204 virtual void transferLoadingResourceFromPage(unsigned long identifier, WebCore::DocumentLoader*, const WebCore::ResourceRequest&, WebCore::Page* oldPage);
WebInspectorClient.mm 43 #import <WebCore/Page.h>
110 WebInspectorFrontendClient::WebInspectorFrontendClient(WebView* inspectedWebView, WebInspectorWindowController* windowController, InspectorController* inspectorController, Page* frontendPage, WTF::PassOwnPtr<Settings> settings)
463 if (Page* inspectedPage = [_inspectedWebView page])
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 39 #include <WebCore/Page.h>
81 static Frame* frameWithSelection(Page* page)
83 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) {
148 // The page overlay needs to be repainted.
259 // The page overlay is moving away from the web page, reset it.
326 // If we get a mouse down event inside the page overlay we should hide the find UI.
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
AccessibilityWebPageObject.mm 45 WebCore::Page* page = m_page->corePage();
46 if (!page)
49 WebCore::Frame* core = page->mainFrame();
60 - (void)setWebPage:(WebPage*)page
62 m_page = page;
164 // Hit-test point comes in as bottom-screen coordinates. Needs to be normalized to the frame of the web page.
174 // Re-center point into the web page's frame.
  /frameworks/base/media/libstagefright/
OggExtractor.cpp 85 struct Page {
101 Page mCurrentPage;
118 ssize_t readPage(off64_t offset, Page *page);
258 // Given the offset of the "current" page, find the page immediately preceding
260 // To do this we back up from the "current" page's offset until we find any
261 // page preceding it and then scan forward to just before the current page.
288 // We did not find a page preceding this one
648 Page page; local
    [all...]

Completed in 625 milliseconds

1 2 3 4 5 6 7 8 91011>>