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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/history/
CachedPage.h 35 class Page;
39 static PassRefPtr<CachedPage> create(Page*);
42 void restore(Page*);
54 CachedPage(Page*);
BackForwardList.h 40 class Page;
65 static PassRefPtr<BackForwardList> create(Page* page) { return adoptRef(new BackForwardList(page)); }
73 Page* page() { return m_page; } function in class:WebCore::BackForwardList
109 BackForwardList(Page*);
111 Page* m_page;
  /external/v8/test/cctest/
test-spaces.cc 37 Page::set_rset_state(Page::IN_USE);
40 Page* p = Page::FromAddress(page_start);
47 CHECK(!Page::IsRSetSet(addr, 0));
53 Page::SetRSet(addr, 0);
59 CHECK(Page::IsRSetSet(addr, 0));
64 TEST(Page) {
66 Page::set_rset_state(Page::NOT_IN_USE)
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptState.h 41 class Page;
52 ScriptState* scriptStateFromPage(DOMWrapperWorld*, Page*);
  /external/webkit/WebCore/page/
PageGroupLoadDeferrer.h 29 class Page;
33 PageGroupLoadDeferrer(Page*, bool deferSelf);
Page.cpp 22 #include "Page.h"
90 static HashSet<Page*>* allPages;
93 static WTF::RefCountedLeakCounter pageCounter("Page");
100 // Get all the frames of all the pages in all the page groups
101 HashSet<Page*>::iterator end = allPages->end();
102 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
115 HashSet<Page*>::iterator end = allPages->end();
116 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
123 Page::Page(ChromeClient* chromeClient, ContextMenuClient* contextMenuClient, EditorClient* editorClient, Drag (…)
396 Page* page = *it; local
664 Page* page = *it; local
682 Page* page = *it; local
    [all...]
PageGroupLoadDeferrer.cpp 25 #include "Page.h"
33 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page* page, bool deferSelf)
35 const HashSet<Page*>& pages = page->group().pages();
37 HashSet<Page*>::const_iterator end = pages.end();
38 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
39 Page* otherPage = *it;
40 if ((deferSelf || otherPage != page)) {
53 if (Page* page = m_deferredFrames[i]->page()
    [all...]
FocusController.h 39 class Page;
43 FocusController(Page*);
61 Page* m_page;
GeolocationController.h 41 class Page;
45 GeolocationController(Page*, GeolocationControllerClient*);
57 Page* m_page;
PageGroup.h 39 class Page;
45 PageGroup(Page*);
51 const HashSet<Page*>& pages() const { return m_pages; }
53 void addPage(Page*);
54 void removePage(Page*);
95 HashSet<Page*> m_pages;
ContextMenuController.h 41 class Page;
45 ContextMenuController(Page*, ContextMenuClient*);
62 Page* m_page;
  /external/webkit/WebCore/platform/qt/
ScreenQt.cpp 32 #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/WebCore/plugins/
PluginData.h 29 class Page;
49 static PassRefPtr<PluginData> create(const Page* page) { return adoptRef(new PluginData(page)); }
53 const Page* page() const { return m_page; } function in class:WebCore::PluginData
64 PluginData(const Page*);
69 const Page* m_page;
  /external/webkit/WebKit/mac/WebInspector/
WebInspector.mm 37 #include <WebCore/Page.h>
57 if (Page* page = core(_webView))
58 page->inspectorController()->show();
63 if (Page* page = core(_webView))
64 page->inspectorController()->showPanel(InspectorController::ConsolePanel);
74 if (Page* page = core(_webView))
75 return page->inspectorController()->debuggerEnabled()
    [all...]
  /external/webkit/WebCore/wml/
WMLPageState.h 32 class Page;
40 WMLPageState(Page*);
56 Page* page() const { return m_page; } function in class:WebCore::WMLPageState
69 Page* m_page;
  /external/webkit/WebCore/inspector/
InspectorClient.h 34 class Page;
43 virtual Page* createPage() = 0;
JavaScriptDebugServer.h 50 class Page;
62 void addListener(JavaScriptDebugListener*, Page*);
63 void removeListener(JavaScriptDebugListener*, Page*);
90 void pageCreated(Page*);
110 bool hasListenersInterestedInPage(Page*);
113 void setJavaScriptPaused(Page*, bool paused);
117 void dispatchFunctionToListeners(JavaScriptExecutionCallback, Page*);
118 void pauseIfNeeded(Page*);
133 void didAddListener(Page*);
134 void didRemoveListener(Page*);
    [all...]
  /external/webkit/WebCore/page/win/
PageWin.cpp 27 #include "Page.h"
38 HINSTANCE Page::s_instanceHandle = 0;
40 void Page::setCanStartPlugins(bool canStartPlugins)
  /external/webkit/WebCore/storage/
StorageNamespace.h 38 class Page;
46 static PassRefPtr<StorageNamespace> sessionStorageNamespace(Page*);
  /external/webkit/WebKit/wx/WebKitSupport/
InspectorClientWx.h 34 class Page;
44 virtual Page* createPage();
  /external/v8/src/
spaces-inl.h 46 Page* PageIterator::next() {
56 // Page
58 Page* Page::next_page() {
63 Address Page::AllocationTop() {
69 void Page::ClearRSet() {
76 // | page address | words (6) | bit offset (5) | pointer alignment (2) |
80 // | page address | words(5) | bit offset(5) | pointer alignment (3) |
86 Address Page::ComputeRSetBitPosition(Address address, int offset,
88 ASSERT(Page::is_rset_in_use())
90 Page* page = Page::FromAddress(address); local
304 Page* page = Page::FromAddress(RoundUp(address(), Page::kPageSize)); local
    [all...]
spaces.h 48 // spaces consists of a list of pages. A page has a page header, a remembered
49 // set area, and an object area. A page size is deliberately chosen as 8K
50 // bytes. The first word of a page is an opaque page header that has the
51 // address of the next page and its ownership information. The second word may
52 // have the allocation top address of this page. The next 248 bytes are
57 // Page::kMaxHeapObjectSize, so that they do not have to move during
69 ASSERT((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
78 ASSERT((0 < size) && (size <= Page::kMaxHeapObjectSize)
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8ConsoleMessage.h 40 class Page;
51 void dispatchNow(Page*);
58 // Delayed messages are always reported in the page corresponding
  /external/webkit/WebKit/haiku/WebCoreSupport/
InspectorClientHaiku.h 38 class Page;
45 virtual Page* createPage();
  /external/webkit/WebKit/qt/WebCoreSupport/
InspectorClientQt.h 42 class Page;
51 virtual Page* createPage();

Completed in 258 milliseconds

1 2 3 4 5 6 7 8 91011>>