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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/plugins/symbian/
PluginContainerSymbian.cpp 26 #include "Page.h"
67 if (Page* page = m_pluginView->parentFrame()->page())
68 page->focusController()->setActive(true);
75 if (Page* page = m_pluginView->parentFrame()->page())
76 page->focusController()->setActive(false);
  /external/webkit/Source/WebCore/storage/
StorageNamespaceImpl.h 41 class Page;
65 virtual void clear(Page*);
StorageEventDispatcher.cpp 34 #include "Page.h"
47 Page* page = sourceFrame->page();
48 if (!page)
51 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
52 // of any given page in the group or mutate the page group itself.
55 // Send events only to our page.
56 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext())
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
DebuggerAgentImpl.cpp 65 WebCore::Page* DebuggerAgentImpl::page() function in class:WebKit::DebuggerAgentImpl
67 return m_webViewImpl->page();
StorageEventDispatcherImpl.cpp 40 #include "Page.h"
61 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
62 // of any given page in the group or mutate the page group itself.
65 const HashSet<Page*>& pages = m_pageGroup->pages();
66 HashSet<Page*>::const_iterator end = pages.end();
67 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
InspectorClientHaiku.h 38 class Page;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebPlatformStrategies.cpp 29 #include <WebCore/Page.h>
69 void WebPlatformStrategies::getPluginInfo(const WebCore::Page*, Vector<WebCore::PluginInfo>& outPlugins)
102 bool WebPlatformStrategies::isLinkVisited(Page* page, LinkHash hash)
104 return page->group().isLinkVisited(hash);
107 void WebPlatformStrategies::addVisitedLink(Page* page, LinkHash hash)
109 page->group().addVisitedLinkHash(hash);
  /external/webkit/Source/WebCore/history/
CachedPage.cpp 33 #include "Page.h"
45 PassRefPtr<CachedPage> CachedPage::create(Page* page)
47 return adoptRef(new CachedPage(page));
50 CachedPage::CachedPage(Page* page)
52 , m_cachedMainFrame(CachedFrame::create(page->mainFrame()))
70 void CachedPage::restore(Page* page)
73 ASSERT(page && page->mainFrame() && page->mainFrame() == m_cachedMainFrame->view()->frame())
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorController.h 50 class Page;
58 InspectorController(Page*, InspectorClient*);
62 Page* inspectedPage() const;
InspectorResourceAgent.h 61 class Page;
76 static PassRefPtr<InspectorResourceAgent> create(InstrumentingAgents* instrumentingAgents, Page* page, InspectorState* state)
78 return adoptRef(new InspectorResourceAgent(instrumentingAgents, page, state));
85 static PassRefPtr<InspectorResourceAgent> restore(Page*, InspectorState*, InspectorFrontend*);
126 InspectorResourceAgent(InstrumentingAgents*, Page*, InspectorState*);
131 Page* m_page;
InspectorInstrumentation.h 36 #include "Page.h"
74 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& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
138 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String&);
139 static void consoleCount(Page*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
140 static void startConsoleTiming(Page*, const String& title)
    [all...]
InspectorProfilerAgent.h 50 class Page;
59 static PassOwnPtr<InspectorProfilerAgent> create(InstrumentingAgents*, InspectorConsoleAgent*, Page*, InspectorState*);
100 InspectorProfilerAgent(InstrumentingAgents*, InspectorConsoleAgent*, Page*, InspectorState*);
106 Page* m_inspectedPage;
  /external/webkit/Source/WebCore/page/
ContextMenuController.h 42 class Page;
47 ContextMenuController(Page*, ContextMenuClient*);
82 Page* m_page;
PageGroup.cpp 35 #include "Page.h"
70 PageGroup::PageGroup(Page* page)
75 ASSERT(page);
76 addPage(page);
179 // dialog. We need a page in the page group to fire a
180 // StorageEvent. There isn't really a correct page to use
182 // particular page). One thing we should ensure though is that
183 // we don't try to clear a private browsing mode page as that has no concep
188 Page* page = 0; local
346 Page* page = *m_pages.begin(); local
    [all...]
BarInfo.cpp 34 #include "Page.h"
63 Page* page = m_frame->page();
64 if (!page)
71 return page->chrome()->toolbarsVisible();
73 return page->chrome()->menubarVisible();
75 return page->chrome()->scrollbarsVisible();
77 return page->chrome()->statusbarVisible();
Chrome.h 50 class Page;
62 Chrome(Page*, ChromeClient*);
105 Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&) const;
184 Page* m_page;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
InspectorClientGtk.h 41 class Page;
69 WebCore::Page* m_frontendPage;
76 InspectorFrontendClient(WebKitWebView* inspectedWebView, WebKitWebView* inspectorWebView, WebKitWebInspector* webInspector, WebCore::Page* inspectorPage, InspectorClient* inspectorClient);
  /external/bluetooth/glib/glib/
gunidecomp.c 33 #define CC_PART1(Page, Char) \
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) \
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) \
290 ((compose_table[Page] >= G_UNICODE_MAX_TABLE_INDEX)
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebInspectorClient.h 50 class Page;
80 WebCore::Page* m_frontendPage;
88 WebInspectorFrontendClient(WebView*, WebInspectorWindowController*, WebCore::InspectorController*, WebCore::Page*, WTF::PassOwnPtr<Settings>);
  /external/webkit/Source/WebKit/wince/
WebView.h 38 class Page;
60 WebCore::Page* page() const { return m_page; } function in class:WebView
92 WebCore::Page* m_page;
  /external/v8/src/
spaces.h 52 // spaces consists of a list of pages. A page has a page header and an object
56 // Page::kMaxHeapObjectSize, so that they do not have to move during
58 // may be larger than the page size.
65 // object maps so if the page belongs to old pointer space or large object
66 // space it is essential to guarantee that the page does not contain any
74 // To enable lazy cleaning of old space pages we can mark chunks of the page
76 // sections are skipped when scanning the page, even if we are otherwise
83 // Each page may have up to one special garbage section. The start of this
91 // Since the top and limit fields are in the space, not the page, only one pag
915 Page* page = Page::FromAddress(addr); local
1770 NewSpacePage* page = reinterpret_cast<NewSpacePage*>(page_start); local
1990 NewSpacePage* page = NewSpacePage::FromLimit(current_); local
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 35 struct Page {
40 Page *acquirePage();
41 void releasePage(Page *page);
43 void appendPage(Page *page);
56 List<Page *> mActivePages;
57 List<Page *> mFreePages;
59 void freePages(List<Page *> *list);
74 void PageCache::freePages(List<Page *> *list)
77 Page *page = *it; local
90 Page *page = *it; local
96 Page *page = new Page; local
119 Page *page = *it; local
312 PageCache::Page *page = mCache->acquirePage(); local
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLParserScheduler.cpp 45 static double parserTimeLimit(Page* page)
48 if (page && page->hasCustomHTMLTokenizerTimeDelay())
49 return page->customHTMLTokenizerTimeDelay();
53 static int parserChunkSize(Page* page)
58 if (page && page->hasCustomHTMLTokenizerChunkSize())
59 return page->customHTMLTokenizerChunkSize()
    [all...]
  /external/webkit/Source/WebCore/page/mac/
PageMac.cpp 34 #include "Page.h"
38 void Page::addSchedulePair(PassRefPtr<SchedulePair> prpPair)
58 void Page::removeSchedulePair(PassRefPtr<SchedulePair> prpPair)
  /external/webkit/Source/WebCore/plugins/
DOMPluginArray.cpp 25 #include "Page.h"
87 Page::refreshPlugins(reload);
94 Page* page = m_frame->page();
95 if (!page)
97 return page->pluginData();

Completed in 904 milliseconds

1 23 4 5 6 7 8 91011>>