HomeSort by relevance Sort by last modified time
    Searched refs:Page (Results 101 - 125 of 438) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/accessibility/win/
AXObjectCacheWin.cpp 33 #include "Page.h"
71 Page* page = document->page();
72 if (!page || !page->chrome()->platformPageClient())
103 NotifyWinEvent(msaaEvent, page->chrome()->platformPageClient(), OBJID_CLIENT, -static_cast<LONG>(obj->axObjectID()));
134 Page* page = newFocusedRenderer->document()->page();
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptState.h 43 class Page;
110 ScriptState* scriptStateFromPage(DOMWrapperWorld*, Page*);
  /external/webkit/Source/WebCore/plugins/qt/
PluginContainerQt.cpp 26 #include "Page.h"
140 if (Page* page = m_pluginView->parentFrame()->page())
141 page->focusController()->setActive(true);
148 if (Page* page = m_pluginView->parentFrame()->page())
149 page->focusController()->setActive(false);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 33 #include "Page.h"
123 void setPage(Page* page) { m_page = page; }
130 Page* m_page;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 37 #include "Page.h"
47 void setPage( Page* page );
120 Page* m_page;
  /external/webkit/Source/WebKit/mac/WebInspector/
WebNodeHighlighter.mm 34 #import <WebCore/Page.h>
59 // The scrollview's content view stays around between page navigations, so target it.
65 _currentHighlight = [[WebNodeHighlight alloc] initWithTargetView:view inspectorController:[_inspectedWebView page]->inspectorController()];
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 32 #include "Page.h"
46 void setPage(Page*);
121 Page* m_page;
ChromeClientWx.h 61 virtual Page* createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&);
62 virtual Page* createModalDialog(Frame*, const FrameLoadRequest&);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebContextMenuClientMac.mm 35 #import <WebCore/Page.h>
  /external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
WebPageGtk.cpp 37 #include <WebCore/Page.h>
55 static inline void scroll(Page* page, ScrollDirection direction, ScrollGranularity granularity)
57 page->focusController()->focusedOrMainFrame()->eventHandler()->scrollRecursively(direction, granularity);
  /external/v8/src/
spaces.cc 43 // You can't actually iterate over the anchor page. It is not a real page,
44 // just an anchor for the double linked page list. Initialize as if we have
45 // reached the end of the anchor page, then the first iteration will move on
46 // to the first page.
57 // You can't actually iterate over the anchor page. It is not a real page,
58 // just an anchor for the double linked page list. Initialize the current
60 // to the first page.
69 HeapObjectIterator::HeapObjectIterator(Page* page
414 NewSpacePage* page = static_cast<NewSpacePage*>(chunk); local
921 Page* page = it.next(); local
962 Page* page = page_iterator.next(); local
1266 NewSpacePage* page = NewSpacePage::FromLimit(current)->next_page(); local
1323 NewSpacePage* page = anchor(); local
1430 NewSpacePage* page = anchor_.next_page(); local
1495 NewSpacePage* page = anchor_.next_page(); local
1526 NewSpacePage* page = NewSpacePage::FromLimit(start); local
2566 LargePage* page = first_page_; local
2592 LargePage* page = heap()->isolate()->memory_allocator()-> local
2631 LargePage* page = FindPage(a); local
2646 LargePage* page = reinterpret_cast<LargePage*>(e->value); local
2671 LargePage* page = current; local
2731 Page* page = Page::FromAddress(object->address()); local
    [all...]
mark-compact.h 39 // to the first live object in the page (only used for old and map objects).
274 // We assume that zero-page is never mapped this allows us to distinguish
408 // page as input, and is updated to contain the offset to be used for the
409 // next live object in the same page. For spaces using a different
430 void AddEvacuationCandidate(Page* p);
486 // Sweep a single page from the given space conservatively.
488 static intptr_t SweepConservatively(PagedSpace* space, Page* p);
491 return Page::FromAddress(reinterpret_cast<Address>(anchor))->
496 return Page::FromAddress(reinterpret_cast<Address>(host))->
501 return Page::FromAddress(reinterpret_cast<Address>(obj))-
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 49 #include <WebCore/Page.h>
111 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
112 for (HashSet<Page*>::iterator iter = pages.begin(); iter != pages.end(); ++iter)
122 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
123 for (HashSet<Page*>::iterator iter = pages.begin(); iter != pages.end(); ++iter)
133 const HashSet<Page*>& pages = PageGroup::pageGroup(pageGroup->identifier())->pages();
134 for (HashSet<Page*>::iterator iter = pages.begin(); iter != pages.end(); ++iter)
279 // Make sure the context has a DOMWindow global object, otherwise this context didn't originate from a Page.
286 void InjectedBundle::didCreatePage(WebPage* page)
288 m_client.didCreatePage(this, page);
    [all...]
  /external/webkit/Source/WebCore/loader/
ResourceLoadNotifier.cpp 39 #include "Page.h"
71 if (Page* page = m_frame->page())
72 page->progress()->incrementProgress(loader->identifier(), r);
79 if (Page* page = m_frame->page())
80 page->progress()->incrementProgress(loader->identifier(), data, dataLength);
87 if (Page* page = m_frame->page()
    [all...]
  /external/webkit/Source/WebCore/page/
Frame.h 84 static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
101 Page* page() const;
210 Frame(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
221 Page* m_page;
365 inline Page* Frame::page() const function in class:WebCore::Frame
Console.cpp 40 #include "Page.h"
142 Page* page = this->page(); local
143 if (!page)
146 page->chrome()->client()->addMessageToConsole(source, type, level, message, lineNumber, sourceURL);
149 InspectorInstrumentation::addMessageToConsole(page, source, type, level, message, 0, callStack);
151 InspectorInstrumentation::addMessageToConsole(page, source, type, level, message, lineNumber, sourceURL);
167 Page* page = this->page() local
264 Page* page = this->page(); local
284 Page* page = this->page(); local
329 Page* page = this->page(); local
362 Page* Console::page() const function in class:WebCore::Console
    [all...]
Console.h 50 class Page;
122 inline Page* page() const;
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsAgentImpl.cpp 41 #include "Page.h"
104 virtual void run(Page* page)
113 HashSet<Page*>::const_iterator end = page->group().pages().end();
114 for (HashSet<Page*>::const_iterator it = page->group().pages().begin(); it != end; ++it) {
239 if (Page* page = m_webViewImpl->page())
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowBase.cpp 34 #include "Page.h"
103 Page* page = frame->page();
104 if (!page)
107 return page->inspectorController()->profilerEnabled();
122 Page* page = frame->page();
123 if (!page)
136 Page* page = impl()->frame()->page(); local
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage_p.h 55 class Page;
82 static WebCore::Page* core(const QWebPage*);
165 WebCore::Page *page; member in class:QWebPagePrivate
qwebframe_p.h 55 QWebFrameData(WebCore::Page*, WebCore::Frame* parentFrame = 0,
62 WebCore::Page* page; member in class:QWebFrameData
80 , page(0)
116 QWebPage *page; member in class:QWebFramePrivate
  /external/webkit/Source/WebKit/mac/WebView/
WebViewData.h 39 class Page;
63 WebCore::Page* page; variable
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.cpp 34 #include "Page.h"
46 GeolocationClientQt::GeolocationClientQt(const QWebPage* page)
47 : m_page(page)
92 WebCore::Page* page = QWebPagePrivate::core(m_page); local
93 page->geolocationController()->positionChanged(m_lastPosition.get());
102 WebCore::Page* page = QWebPagePrivate::core(m_page); local
104 page->geolocationController()->errorOccurred(error.get());
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebContextMenuClient.cpp 40 #include <WebCore/Page.h>
68 propertyBag.adoptRef(WebElementPropertyBag::createInstance(m_webView->page()->contextMenuController()->hitTestResult()));
92 propertyBag.adoptRef(WebElementPropertyBag::createInstance(m_webView->page()->contextMenuController()->hitTestResult()));
122 if (Page* page = frame->page()) {
124 page->mainFrame()->loader()->urlSelected(KURL(ParsedURLString, url), String(), 0, false, false, SendReferrer);
WebInspectorClient.h 45 class Page;
86 WebCore::Page* m_frontendPage;

Completed in 448 milliseconds

1 2 3 45 6 7 8 91011>>