Home
last modified time | relevance | path

Searched refs:Page (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/external/webkit/Source/WebCore/page/
DPage.cpp100 static HashSet<Page*>* allPages;
111 HashSet<Page*>::iterator end = allPages->end(); in networkStateChanged()
112 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) { in networkStateChanged()
126 HashSet<Page*>::iterator end = allPages->end(); in onPackageResultAvailable()
127 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) { in onPackageResultAvailable()
134 Page::Page(const PageClients& pageClients) in Page() function in WebCore::Page
183 allPages = new HashSet<Page*>; in Page()
204 Page::~Page() in ~Page()
237 Page::ViewMode type;
241 {"windowed", Page::ViewModeWindowed},
[all …]
DPageGroupLoadDeferrer.cpp35 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page* page, bool deferSelf) in PageGroupLoadDeferrer()
37 const HashSet<Page*>& pages = page->group().pages(); in PageGroupLoadDeferrer()
39 HashSet<Page*>::const_iterator end = pages.end(); in PageGroupLoadDeferrer()
40 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) { in PageGroupLoadDeferrer()
41 Page* otherPage = *it; in PageGroupLoadDeferrer()
63 if (Page* page = m_deferredFrames[i]->page()) in PageGroupLoadDeferrer()
70 if (Page* page = m_deferredFrames[i]->page()) { in ~PageGroupLoadDeferrer()
DPageGroup.cpp70 PageGroup::PageGroup(Page* page) in PageGroup()
186 HashSet<Page*> pages = it->second->pages(); in clearDomStorage()
187 HashSet<Page*>::iterator pagesEnd = pages.end(); in clearDomStorage()
188 Page* page = 0; in clearDomStorage()
189 for(HashSet<Page*>::iterator pit = pages.begin(); pit != pagesEnd; ++pit) { in clearDomStorage()
190 Page* p = *pit; in clearDomStorage()
238 HashSet<Page*> pages = this->pages(); in removeLocalStorage()
239 HashSet<Page*>::iterator pagesEnd = pages.end(); in removeLocalStorage()
240 for(HashSet<Page*>::iterator pit = pages.begin(); pit != pagesEnd; ++pit) { in removeLocalStorage()
241 Page* p = *pit; in removeLocalStorage()
[all …]
DPageGroup.h41 class Page; variable
49 PageGroup(Page*);
68 const HashSet<Page*>& pages() const { return m_pages; } in pages()
70 void addPage(Page*);
71 void removePage(Page*);
126 HashSet<Page*> m_pages;
/external/v8/test/cctest/
Dtest-spaces.cc38 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);
83 CHECK(p->ObjectAreaStart() == page_start + Page::kObjectStartOffset);
[all …]
/external/v8/src/
Dspaces-inl.h64 Page* PageIterator::next() { in next()
145 void MemoryAllocator::ProtectChunkFromPage(Page* page) { in ProtectChunkFromPage()
151 void MemoryAllocator::UnprotectChunkFromPage(Page* page) { in UnprotectChunkFromPage()
162 Page* Page::Initialize(Heap* heap, in Initialize()
166 Page* page = reinterpret_cast<Page*>(chunk); in Initialize()
179 Page* p = Page::FromAddress(addr); in Contains()
199 OffsetFrom(addr) & ~Page::kPageAlignmentMask); in FromAnyPointerAddress()
224 Page* Page::next_page() { in next_page()
226 return static_cast<Page*>(next_chunk()); in next_page()
230 Page* Page::prev_page() { in prev_page()
[all …]
Dspaces.h98 ASSERT((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
107 ASSERT((0 < size) && (size <= Page::kMaxNonCodeHeapObjectSize))
110 ASSERT((Page::kObjectStartOffset <= offset) \
111 && (offset <= Page::kPageSize))
648 class Page : public MemoryChunk {
654 INLINE(static Page* FromAddress(Address a)) { in INLINE()
655 return reinterpret_cast<Page*>(OffsetFrom(a) & ~kPageAlignmentMask); in INLINE()
662 INLINE(static Page* FromAllocationTop(Address top)) { in INLINE()
663 Page* p = FromAddress(top - kPointerSize); in INLINE()
668 inline Page* next_page();
[all …]
Dspaces.cc69 HeapObjectIterator::HeapObjectIterator(Page* page, in HeapObjectIterator()
106 Page* cur_page; in AdvanceToNextPage()
110 cur_page = Page::FromAddress(cur_addr_ - 1); in AdvanceToNextPage()
222 if (aligned_requested >= (current.size - Page::kPageSize)) { in AllocateRawMemory()
274 capacity_ = RoundUp(capacity, Page::kPageSize); in SetUp()
275 capacity_executable_ = RoundUp(capacity_executable, Page::kPageSize); in SetUp()
386 void Page::InitializeAsAnchor(PagedSpace* owner) { in InitializeAsAnchor()
397 Address area_end = start + Page::kPageSize; in Initialize()
401 Page::kPageSize, in Initialize()
550 area_start = base + Page::kObjectStartOffset; in AllocateChunk()
[all …]
/external/webkit/Source/WebCore/bindings/js/
DPageScriptDebugServer.h43 class Page; variable
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;
DPageScriptDebugServer.cpp54 static Page* toPage(JSGlobalObject* globalObject) in toPage()
79 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page) in addListener()
95 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page) in removeListener()
125 Page* page = toPage(globalObject); in getListenersForGlobalObject()
133 Page* page = toPage(globalObject); in didPause()
140 Page* page = toPage(globalObject); in didContinue()
145 void PageScriptDebugServer::didRemoveLastListener(Page* page) in didRemoveLastListener()
158 const HashSet<Page*>& pages = pageGroup.pages(); in setJavaScriptPaused()
160 HashSet<Page*>::const_iterator end = pages.end(); in setJavaScriptPaused()
161 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) in setJavaScriptPaused()
[all …]
/external/webkit/Source/WebCore/inspector/
DInspectorConsoleInstrumentation.h41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, Message… in addMessageToConsole()
49 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, Message… in addMessageToConsole()
57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> argument… in consoleCount()
65 inline void InspectorInstrumentation::startConsoleTiming(Page* page, const String& title) in startConsoleTiming()
73 inline void InspectorInstrumentation::stopConsoleTiming(Page* page, const String& title, PassRefPtr… in stopConsoleTiming()
81 inline void InspectorInstrumentation::consoleMarkTimeline(Page* page, PassRefPtr<ScriptArguments> a… in consoleMarkTimeline()
90 inline void InspectorInstrumentation::addStartProfilingMessageToConsole(Page* page, const String& t… in addStartProfilingMessageToConsole()
98 inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRef… in addProfile()
106 inline bool InspectorInstrumentation::profilerEnabled(Page* page) in profilerEnabled()
115 inline String InspectorInstrumentation::getCurrentUserInitiatedProfileName(Page* page, bool increme… in getCurrentUserInitiatedProfileName()
DInspectorInstrumentation.h74 static void inspectedPageDestroyed(Page*);
84 static void mouseDidMoveOverElement(Page*, const HitTestResult&, unsigned modifierFlags);
85 static bool handleMousePress(Page*);
115 static void markResourceAsCached(Page*, unsigned long identifier);
116 static void didLoadResourceFromMemoryCache(Page*, DocumentLoader*, const CachedResource*);
137 …static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& mes…
138 …static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& mes…
139 static void consoleCount(Page*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
140 static void startConsoleTiming(Page*, const String& title);
141 static void stopConsoleTiming(Page*, const String& title, PassRefPtr<ScriptCallStack>);
[all …]
DPageDebuggerAgent.h40 class Page; variable
47 …static PassOwnPtr<PageDebuggerAgent> create(InstrumentingAgents*, InspectorState*, Page*, Injected…
55 PageDebuggerAgent(InstrumentingAgents*, InspectorState*, Page*, InjectedScriptManager*);
56 Page* const m_inspectedPage;
DInspectorFrontendHost.h48 class Page; variable
53 …static PassRefPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPag… in create()
89 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage);
92 Page* m_frontendPage;
DInspectorPageAgent.h49 class Page; variable
56 … static PassOwnPtr<InspectorPageAgent> create(InstrumentingAgents*, Page*, InjectedScriptManager*);
80 InspectorPageAgent(InstrumentingAgents*, Page*, InjectedScriptManager*);
83 Page* m_inspectedPage;
/external/webkit/Source/WebKit/win/
DWebInspector.cpp101 if (Page* page = m_webView->page()) in show()
110 if (Page* page = m_webView->page()) in showConsole()
124 if (Page* page = m_webView->page()) in close()
150 Page* page = m_webView->page(); in isDebuggingJavaScript()
163 Page* page = m_webView->page(); in toggleDebuggingJavaScript()
187 Page* page = m_webView->page(); in isProfilingJavaScript()
200 Page* page = m_webView->page(); in toggleProfilingJavaScript()
224 Page* page = m_webView->page(); in isJavaScriptProfilingEnabled()
237 Page* page = m_webView->page(); in setJavaScriptProfilingEnabled()
254 Page* page = m_webView->page(); in evaluateInFrontend()
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DPageScriptDebugServer.h41 class Page; variable
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/platform/qt/
DScreenQt.cpp44 static QWidget* qwidgetForPage(const Page* page) in qwidgetForPage()
55 FloatRect screenRect(const Page* page) in screenRect()
69 int screenDepth(const Page* page) in screenDepth()
78 FloatRect usableScreenRect(const Page* page) in usableScreenRect()
92 float scaleFactor(const Page*) in scaleFactor() argument
/external/webkit/Source/WebKit/mac/WebInspector/
DWebInspector.mm38 #include <WebCore/Page.h>
64 if (Page* page = core(_webView))
70 if (Page* page = core(_webView))
81 if (Page* page = core(_webView))
96 Page* page = core(_webView);
104 if (Page* page = core(_webView))
110 if (Page* page = core(_webView))
125 if (Page* page = core(_webView))
131 Page* page = core(_webView);
139 if (Page* page = core(_webView))
[all …]
/external/webkit/Source/WebCore/history/
DBackForwardListImpl.h37 class Page; variable
46 …static PassRefPtr<BackForwardListImpl> create(Page* page) { return adoptRef(new BackForwardListImp… in create()
49 Page* page() { return m_page; } in page()
83 BackForwardListImpl(Page*);
87 Page* m_page;
DCachedPage.h35 class Page; variable
39 static PassRefPtr<CachedPage> create(Page*);
42 void restore(Page*);
56 CachedPage(Page*);
/external/bluetooth/glib/glib/
Dgunidecomp.c33 #define CC_PART1(Page, Char) \ argument
34 ((combining_class_table_part1[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
35 ? (combining_class_table_part1[Page] - G_UNICODE_MAX_TABLE_INDEX) \
36 : (cclass_data[combining_class_table_part1[Page]][Char]))
38 #define CC_PART2(Page, Char) \ argument
39 ((combining_class_table_part2[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
40 ? (combining_class_table_part2[Page] - G_UNICODE_MAX_TABLE_INDEX) \
41 : (cclass_data[combining_class_table_part2[Page]][Char]))
289 #define CI(Page, Char) \ argument
290 ((compose_table[Page] >= G_UNICODE_MAX_TABLE_INDEX) \
[all …]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundleBackForwardList.cpp43 Page* page = m_page->corePage(); in itemAtIndex()
53 Page* page = m_page->corePage(); in backListCount()
63 Page* page = m_page->corePage(); in forwardListCount()
73 Page* page = m_page->corePage(); in clear()
/external/webkit/Source/WebCore/wml/
DWMLPageState.h33 class Page; variable
40 WMLPageState(Page*);
56 Page* page() const { return m_page; } in page()
69 Page* m_page;
/external/webkit/Source/WebCore/plugins/
DPluginData.h29 class Page; variable
53 … static PassRefPtr<PluginData> create(const Page* page) { return adoptRef(new PluginData(page)); } in create()
65 PluginData(const Page*);
66 void initPlugins(const Page*);

12345678910>>...20