/external/webkit/Source/WebCore/rendering/ |
RenderTheme.h | 57 // appropriate platform theme. When the theme is needed in non-page dependent code, a default theme is 58 // used as fallback, which is returned for a nulled page, so the platform code needs to account for this. 59 static PassRefPtr<RenderTheme> themeForPage(Page* page); 61 // When the theme is needed in non-page dependent code, the defaultTheme() is used as fallback.
|
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
WebAutofill.cpp | 39 #include "Page.h" 147 if (frame != frame->page()->mainFrame()) 231 Page* page = mWebViewCore->mainFrame()->page(); local 232 return page ? page->settings()->autoFillEnabled() : false;
|
/external/webkit/Source/WebKit/chromium/src/ |
ChromeClientImpl.h | 75 virtual WebCore::Page* createWindow(
|
DebuggerAgentManager.cpp | 90 s_pageDeferrers.set(agent->webView(), new WebCore::PageGroupLoadDeferrer(agent->page(), true)); 295 WebCore::Page* page = frame->page(); 297 if (it->second->page() == page)
|
WebViewImpl.cpp | 76 #include "Page.h" 181 // The group name identifies a namespace of pages. Page group is used on OSX 184 // one page group. 187 // Used to defer all page activity in cases where the embedder wishes to run 232 Page::visitedStateChanged(PageGroup::pageGroup(pageGroupName), linkHash); 237 Page::allVisitedStateChanged(PageGroup::pageGroup(pageGroupName)); 248 // Pick any page in the page group since we are deferring all pages. 343 Page::PageClients pageClients; 356 m_page.set(new Page(pageClients)) 2348 Page* page = m_webViewImpl->page(); local [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
InspectorClientGtk.cpp | 26 #include "Page.h" 194 InspectorFrontendClient::InspectorFrontendClient(WebKitWebView* inspectedWebView, WebKitWebView* inspectorWebView, WebKitWebInspector* webInspector, Page* inspectorPage, InspectorClient* inspectorClient)
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
EditorClientHaiku.cpp | 41 #include "Page.h" 54 void EditorClientHaiku::setPage(Page* page) 56 m_page = page;
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebChromeClient.h | 59 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
|
WebContextMenuClient.mm | 48 #import <WebCore/Page.h> 283 NSDictionary *element = [[[WebElementDictionary alloc] initWithHitTestResult:[m_webView page]->contextMenuController()->hitTestResult()] autorelease]; 313 NSDictionary *element = [[WebElementDictionary alloc] initWithHitTestResult:[m_webView page]->contextMenuController()->hitTestResult()];
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebDragClient.cpp | 39 #include <WebCore/Page.h> 145 DWORD okEffect = draggingSourceOperationMaskToDragCursors(m_webView->page()->dragController()->sourceDragOperation());
|
WebFrameLoaderClient.cpp | 65 #include <WebCore/Page.h> 509 // didReceiveResponse sets up a new stream to the plug-in. on a full-page plug-in, a failure in 628 if (Page* page = webView->page()) { 629 if (!page->settings()->privateBrowsingEnabled()) 630 historyItem = page->backForward()->currentItem(); 768 void WebFrameLoaderClient::didTransferChildFrameToNewDocument(Page*) 772 WebView* webView = kit(coreFrame->page()); 777 void WebFrameLoaderClient::transferLoadingResourceFromPage(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request, Page* oldPage [all...] |
/external/webkit/Source/WebKit/win/ |
WebNodeHighlight.cpp | 37 #include <WebCore/Page.h> 157 m_inspectedWebView->page()->inspectorController()->drawNodeHighlight(context);
|
WebView.h | 64 WebView* kit(WebCore::Page*); 65 WebCore::Page* core(IWebView*); 829 WebCore::Page* page(); [all...] |
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
ChromeClientWinCE.cpp | 87 Page* ChromeClientWinCE::createWindow(Frame*, const FrameLoadRequest&, const WindowFeatures&, const NavigationAction&)
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.h | 41 WebChromeClient(WebPage* page) 44 , m_page(page) 48 WebPage* page() const { return m_page; } function in class:WebKit::WebChromeClient 72 // Frame wants to create the new Page. Also, the newly created window 74 // created Page has its show method called. 75 virtual WebCore::Page* createWindow(WebCore::Frame*, const WebCore::FrameLoadRequest&, const WebCore::WindowFeatures&, const WebCore::NavigationAction&);
|
/external/v8/test/cctest/ |
test-heap.cc | 845 Page* page = Page::FromAddress(current_top); local 846 Address current_page = page->address(); 847 Address next_page = current_page + Page::kPageSize; 850 // Alas, need to cross another page to be able to 852 next_page += Page::kPageSize; 857 intptr_t* flags_ptr = &Page::FromAddress(next_page)->flags_; 873 // This chould have turned next page into LargeObjectPage: 874 // CHECK(Page::FromAddress(next_page)->IsLargeObjectPage()) 979 Page* page = Page::FromAddress(clone_addr); local [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.cpp | 93 #include <WebCore/Page.h> 143 RefPtr<WebPage> page = adoptRef(new WebPage(pageID, parameters)); local 145 if (page->pageGroup()->isVisibleToInjectedBundle() && WebProcess::shared().injectedBundle()) 146 WebProcess::shared().injectedBundle()->didCreatePage(page.get()); 148 return page.release(); 181 Page::PageClients pageClients; 193 m_page = adoptPtr(new Page(pageClients)); 755 // We're installing a page overlay when a page overlay is already active. 915 static bool handleMouseEvent(const WebMouseEvent& mouseEvent, Page* page [all...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebBaseNetscapePluginView.mm | 54 #import <WebCore/Page.h> 438 Page* page = frame->page(); 439 if (!page) 442 bool wasDeferring = page->defersLoading(); 444 page->setDefersLoading(true); 449 page->setDefersLoading(false); 457 page->didStartPlugin(_haltable.get()); 488 if (Page* page = frame->page() [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedView.java | 62 // the min drag distance for a fling to register, to prevent random page shifts 73 // The page is moved more than halfway, automatically move to the next page on touch up. 76 // the velocity at which a fling gesture will cause us to snap to the next page 164 // to switch to a new page 266 * Returns the index of the currently displayed page. 268 * @return The index of the currently displayed page. 287 * Updates the scroll of the current page immediately to its final scroll position. We use this 289 * the previous tab page. 298 * Sets the current page 521 View page = (View) getPageAt(i); local 777 int page = indexToPage(indexOfChild(child)); local 1355 int page = indexToPage(indexOfChild(child)); local 1905 int page = (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage; local [all...] |
/external/webkit/Source/WebCore/page/ |
FocusController.cpp | 48 #include "Page.h" 72 if (Page* page = document->page()) { 73 if (page->defersLoading()) 84 FocusController::FocusController(Page* page) 85 : m_page(page) 94 ASSERT(!frame || frame->page() == m_page); 469 HitTestResult result = candidate.visibleNode->document()->page()->mainFrame()->eventHandler()->hitTestResultAtPoint(IntPoint(x, y), false, true) [all...] |
Settings.cpp | 38 #include "Page.h" 48 static void setLoadsImagesAutomaticallyInAllFrames(Page* page) 50 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) 51 frame->document()->cachedResourceLoader()->setAutoLoadImages(page->settings()->loadsImagesAutomatically()); 83 Settings::Settings(Page* page) 84 : m_page(page) 379 // FIXME: We can only enable cookie private browsing mode globally, so it's misleading to have it as a per-page setting.
|
/external/webkit/Source/WebCore/platform/mac/ |
PopupMenuMac.mm | 34 #import "Page.h" 192 if (Page* page = frame->page()) 193 page->chrome()->client()->willPopUpMenu(menu);
|
WidgetMac.mm | 42 #import "Page.h" 121 if (Page* page = frame->page()) { 123 page->chrome()->focus(); 125 page->chrome()->focusNSView(view);
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
FrameLoaderClientEfl.cpp | 48 #include "Page.h" 348 void FrameLoaderClientEfl::didTransferChildFrameToNewDocument(Page*) 352 void FrameLoaderClientEfl::transferLoadingResourceFromPage(unsigned long, DocumentLoader*, const ResourceRequest&, Page*)
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
FrameLoaderClientWx.cpp | 45 #include "Page.h" 639 // didReceiveResponse sets up a new stream to the plug-in. on a full-page plug-in, a failure in 854 // The creation of the frame may have run arbitrary JavaScript that removed it from the page already. 855 if (!childFrame->page()) 867 void FrameLoaderClientWx::didTransferChildFrameToNewDocument(Page*) 871 void FrameLoaderClientWx::transferLoadingResourceFromPage(unsigned long, DocumentLoader*, const ResourceRequest&, Page*)
|