Home
last modified time | relevance | path

Searched refs:Page (Results 1 – 25 of 489) 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/src/
Dspaces-inl.h47 Page* PageIterator::next() { in next()
59 Page* Page::next_page() { in next_page()
64 Address Page::AllocationTop() { in AllocationTop()
70 Address Page::AllocationWatermark() { in AllocationWatermark()
79 uint32_t Page::AllocationWatermarkOffset() { in AllocationWatermarkOffset()
85 void Page::SetAllocationWatermark(Address allocation_watermark) { in SetAllocationWatermark()
107 void Page::SetCachedAllocationWatermark(Address allocation_watermark) { in SetCachedAllocationWatermark()
112 Address Page::CachedAllocationWatermark() { in CachedAllocationWatermark()
117 uint32_t Page::GetRegionMarks() { in GetRegionMarks()
122 void Page::SetRegionMarks(uint32_t marks) { in SetRegionMarks()
[all …]
Dspaces.h94 ASSERT((OffsetFrom(address) & Page::kPageAlignmentMask) == 0)
103 ASSERT((0 < size) && (size <= Page::kMaxHeapObjectSize))
106 ASSERT((Page::kObjectStartOffset <= offset) \
107 && (offset <= Page::kPageSize))
131 class Page {
140 INLINE(static Page* FromAddress(Address a)) { in INLINE()
141 return reinterpret_cast<Page*>(OffsetFrom(a) & ~kPageAlignmentMask); in INLINE()
148 INLINE(static Page* FromAllocationTop(Address top)) { in INLINE()
149 Page* p = FromAddress(top - kPointerSize); in INLINE()
161 inline Page* next_page();
[all …]
Dspaces.cc70 HeapObjectIterator::HeapObjectIterator(Page* page, in HeapObjectIterator()
80 end_page_ = Page::FromAllocationTop(end); in Initialize()
82 Page* p = Page::FromAllocationTop(cur_addr_); in Initialize()
94 Page* cur_page = Page::FromAllocationTop(cur_addr_); in FromNextPage()
112 Page* p = Page::FromAllocationTop(cur_addr_); in Verify()
113 ASSERT(p == Page::FromAllocationTop(cur_limit_)); in Verify()
135 for (Page* p = space->first_page_; p->is_valid(); p = p->next_page()) { in PageIterator()
239 *allocated = RoundUp(requested, Page::kPageSize); in AllocateRawMemory()
241 if (*allocated >= current.size - Page::kPageSize) { in AllocateRawMemory()
310 capacity_ = RoundUp(capacity, Page::kPageSize); in Setup()
[all …]
/external/v8/test/cctest/
Dtest-spaces.cc36 Page* p = Page::FromAddress(page_start); in VerifyRegionMarking()
38 p->SetRegionMarks(Page::kAllRegionsCleanMarks); in VerifyRegionMarking()
43 CHECK(!Page::FromAddress(addr)->IsRegionDirty(addr)); in VerifyRegionMarking()
49 Page::FromAddress(addr)->MarkRegionDirty(addr); in VerifyRegionMarking()
55 CHECK(Page::FromAddress(addr)->IsRegionDirty(addr)); in VerifyRegionMarking()
60 TEST(Page) { in TEST() argument
61 byte* mem = NewArray<byte>(2*Page::kPageSize); in TEST()
65 Address page_start = RoundUp(start, Page::kPageSize); in TEST()
67 Page* p = Page::FromAddress(page_start); in TEST()
77 CHECK(p->ObjectAreaStart() == page_start + Page::kObjectStartOffset); in TEST()
[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