HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 1 - 25 of 432) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/
VisitedLinkStrategy.h 34 class Page;
38 virtual bool isLinkVisited(Page*, LinkHash) = 0;
39 virtual void addVisitedLink(Page*, LinkHash) = 0;
  /external/webkit/Source/WebCore/plugins/
PluginStrategy.h 35 class Page;
40 virtual void getPluginInfo(const Page*, Vector<PluginInfo>&) = 0;
PluginDataNone.cpp 32 void PluginData::initPlugins(const Page*)
  /external/webkit/Source/WebCore/history/
CachedPage.h 35 class Page;
39 static PassRefPtr<CachedPage> create(Page*);
42 void restore(Page*);
56 CachedPage(Page*);
BackForwardListImpl.h 37 class Page;
46 static PassRefPtr<BackForwardListImpl> create(Page* page) { return adoptRef(new BackForwardListImpl(page)); }
49 Page* page() { return m_page; } function in class:WebCore::BackForwardListImpl
83 BackForwardListImpl(Page*);
87 Page* m_page;
BackForwardController.h 37 class Page;
42 BackForwardController(Page*, PassRefPtr<BackForwardList>);
71 Page* m_page;
PageCache.h 40 class Page;
47 static bool canCache(Page*);
52 void add(PassRefPtr<HistoryItem>, Page*); // Prunes if capacity() is exceeded.
91 // Function to obtain the global page cache.
  /external/webkit/Source/WebCore/inspector/
PageDebuggerAgent.h 40 class Page;
47 static PassOwnPtr<PageDebuggerAgent> create(InstrumentingAgents*, InspectorState*, Page*, InjectedScriptManager*);
55 PageDebuggerAgent(InstrumentingAgents*, InspectorState*, Page*, InjectedScriptManager*);
56 Page* const m_inspectedPage;
InspectorClient.h 37 class Page;
50 // Navigation can cause some WebKit implementations to change the view / page / inspector controller instance.
55 bool doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message);
InspectorConsoleInstrumentation.h 41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
44 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
49 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceID)
52 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack)
60 if (InspectorAgent* inspectorAgent = inspectorAgentForPage(page))
65 inline void InspectorInstrumentation::startConsoleTiming(Page* page, const String& title
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.h 43 class Page;
51 void addListener(ScriptDebugListener*, Page*);
52 void removeListener(ScriptDebugListener*, Page*);
57 typedef HashMap<Page*, ListenerSet*> PageListenersMap;
66 void didRemoveLastListener(Page*);
69 void setJavaScriptPaused(Page*, bool paused);
74 Page* m_pausedPage;
  /external/webkit/Source/WebCore/bindings/v8/
PageScriptDebugServer.h 41 class Page;
48 void addListener(ScriptDebugListener*, Page*);
49 void removeListener(ScriptDebugListener*, Page*);
57 virtual void run(Page*) = 0;
70 typedef HashMap<Page*, ScriptDebugListener*> ListenersMap;
73 Page* m_pausedPage;
  /external/webkit/Source/WebCore/page/
PageGroupLoadDeferrer.h 29 class Page;
34 PageGroupLoadDeferrer(Page*, bool deferSelf);
PageGroupLoadDeferrer.cpp 26 #include "Page.h"
35 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page* page, bool deferSelf)
37 const HashSet<Page*>& pages = page->group().pages();
39 HashSet<Page*>::const_iterator end = pages.end();
40 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
41 Page* otherPage = *it;
42 if ((deferSelf || otherPage != page)) {
63 if (Page* page = m_deferredFrames[i]->page()
    [all...]
Page.cpp 21 #include "Page.h"
100 static HashSet<Page*>* allPages;
103 static WTF::RefCountedLeakCounter pageCounter("Page");
110 // Get all the frames of all the pages in all the page groups
111 HashSet<Page*>::iterator end = allPages->end();
112 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
126 HashSet<Page*>::iterator end = allPages->end();
127 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
134 Page::Page(const PageClients& pageClients
438 Page* page = *it; local
722 Page* page = *it; local
740 Page* page = *it; local
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
ScreenQt.cpp 36 #include "Page.h"
44 static QWidget* qwidgetForPage(const Page* page)
46 Frame* frame = (page ? page->mainFrame() : 0);
55 FloatRect screenRect(const Page* page)
57 QWidget* qw = qwidgetForPage(page);
69 int screenDepth(const Page* page)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardList.cpp 33 #include <WebCore/Page.h>
43 Page* page = m_page->corePage();
44 if (!page)
46 return InjectedBundleBackForwardListItem::create(page->backForward()->itemAtIndex(index));
53 Page* page = m_page->corePage();
54 if (!page)
56 return page->backForward()->backCount();
63 Page* page = m_page->corePage()
    [all...]
  /external/v8/test/cctest/
test-spaces.cc 38 Page* p = Page::FromAddress(page_start);
40 p->SetRegionMarks(Page::kAllRegionsCleanMarks);
45 CHECK(!Page::FromAddress(addr)->IsRegionDirty(addr));
51 Page::FromAddress(addr)->MarkRegionDirty(addr);
57 CHECK(Page::FromAddress(addr)->IsRegionDirty(addr));
66 TEST(Page) {
67 byte* mem = NewArray<byte>(2*Page::kPageSize);
71 Address page_start = RoundUp(start, Page::kPageSize);
73 Page* p = Page::FromAddress(page_start)
    [all...]
  /external/webkit/Source/WebCore/dom/
DeviceOrientationController.h 38 class Page;
42 DeviceOrientationController(Page*, DeviceOrientationClient*);
56 Page* m_page;
  /external/webkit/Source/WebCore/storage/
StorageNamespace.h 38 class Page;
46 static PassRefPtr<StorageNamespace> sessionStorageNamespace(Page*, unsigned quota);
57 virtual void clear(Page*) = 0;
  /external/webkit/Source/WebKit/chromium/src/
InspectorFrontendClientImpl.h 39 class Page;
50 InspectorFrontendClientImpl(WebCore::Page*, WebDevToolsFrontendClient*, WebDevToolsFrontendImpl*);
74 WebCore::Page* m_frontendPage;
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebPlatformStrategies.h 51 virtual void getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>&);
54 virtual bool isLinkVisited(WebCore::Page*, WebCore::LinkHash);
55 virtual void addVisitedLink(WebCore::Page*, WebCore::LinkHash);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebPlatformStrategies.h 51 virtual void getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>&);
54 virtual bool isLinkVisited(WebCore::Page*, WebCore::LinkHash);
55 virtual void addVisitedLink(WebCore::Page*, WebCore::LinkHash);
  /external/webkit/Source/WebCore/wml/
WMLPageState.h 33 class Page;
40 WMLPageState(Page*);
56 Page* page() const { return m_page; } function in class:WebCore::WMLPageState
69 Page* m_page;
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspector.mm 38 #include <WebCore/Page.h>
64 if (Page* page = core(_webView))
65 page->inspectorController()->show();
70 if (Page* page = core(_webView))
71 page->inspectorController()->showConsole();
81 if (Page* page = core(_webView))
82 return page->inspectorController()->debuggerEnabled()
    [all...]

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>