Searched defs:page (Results 1 - 25 of 395) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
H A Dqtwebkit_qwebinspector_snippet.cpp7 QWebPage *page = new QWebPage; local
11 inspector->setPage(page);
/external/webkit/Source/WebKit/qt/tests/qwebinspector/
H A Dtst_qwebinspector.cpp36 { // External inspector + manual destruction of page first
37 QWebPage* page = new QWebPage(); local
38 page->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
40 inspector->setPage(page);
41 page->updatePositionDependentActions(QPoint(0, 0));
42 page->triggerAction(QWebPage::InspectElement);
44 delete page;
48 QWebPage* page = new QWebPage(); local
49 page->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
51 inspector->setPage(page);
59 QWebPage page; local
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebContextMenuClient.h37 WebContextMenuClient(WebPage* page) argument
38 : m_page(page)
H A DWebDragClient.h37 WebDragClient(WebPage* page) argument
38 : m_page(page)
H A DWebGeolocationClient.h39 WebGeolocationClient(WebPage* page) argument
40 : m_page(page)
H A DWebInspectorClient.h39 WebInspectorClient(WebPage* page) argument
40 : m_page(page)
H A DWebEditorClient.h38 WebEditorClient(WebPage* page) argument
39 : m_page(page)
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebinspector_p.h34 , page(0)
45 QWebPage* page; member in class:QWebInspectorPrivate
/external/webkit/Source/WebKit/wx/
H A DWebViewPrivate.h44 page(0)
47 WebCore::Page* page; member in class:WebViewPrivate
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFindClient.cpp33 void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount) argument
38 m_client.didFindString(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
42 void WebFindClient::didFailToFindString(WebPageProxy* page, const String& string) argument
47 m_client.didFailToFindString(toAPI(page), toAPI(string.impl()), m_client.clientInfo);
50 void WebFindClient::didCountStringMatches(WebPageProxy* page, const String& string, uint32_t matchCount) argument
55 m_client.didCountStringMatches(toAPI(page), toAPI(string.impl()), matchCount, m_client.clientInfo);
H A DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener) argument
46 m_client.willSubmitForm(toAPI(page), toAPI(frame), toAPI(sourceFrame), toAPI(textFieldsMap.get()), toAPI(userData), toAPI(listener), m_client.clientInfo);
H A DWebOpenPanelResultListenerProxy.h42 static PassRefPtr<WebOpenPanelResultListenerProxy> create(WebPageProxy* page) argument
44 return adoptRef(new WebOpenPanelResultListenerProxy(page));
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebBackForwardListProxy.h38 static PassRefPtr<WebBackForwardListProxy> create(WebPage* page) { return adoptRef(new WebBackForwardListProxy(page)); } argument
H A DWebContextMenu.h35 static PassRefPtr<WebContextMenu> create(WebPage* page) argument
37 return adoptRef(new WebContextMenu(page));
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DInjectedBundleBasic_Bundle.cpp39 virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page) argument
/external/chromium/chrome/browser/policy/
H A Dmanaged_prefs_banner_base_unittest.cc62 OptionsPage page)
63 : ManagedPrefsBannerBase(local_state, user_prefs, page) { }
60 ManagedPrefsBannerBaseMock(PrefService* local_state, PrefService* user_prefs, OptionsPage page) argument
/external/chromium/chrome/browser/ui/webui/options/
H A Doptions_managed_banner_handler.cc13 WebUI* web_ui, const string16& page_name, OptionsPage page)
14 : policy::ManagedPrefsBannerBase(web_ui->GetProfile()->GetPrefs(), page),
15 web_ui_(web_ui), page_name_(page_name), page_(page) {
12 OptionsManagedBannerHandler( WebUI* web_ui, const string16& page_name, OptionsPage page) argument
/external/flac/libFLAC/include/private/
H A Dogg_encoder_aspect.h47 ogg_page page; member in struct:FLAC__OggEncoderAspect
/external/kernel-headers/original/asm-arm/
H A Dscatterlist.h8 struct page *page; /* buffer page */ member in struct:scatterlist
/external/webkit/Source/WebCore/history/
H A DCachedPage.cpp45 PassRefPtr<CachedPage> CachedPage::create(Page* page) argument
47 return adoptRef(new CachedPage(page));
50 CachedPage::CachedPage(Page* page) argument
52 , m_cachedMainFrame(CachedFrame::create(page->mainFrame()))
70 void CachedPage::restore(Page* page) argument
73 ASSERT(page && page->mainFrame() && page->mainFrame() == m_cachedMainFrame->view()->frame());
74 ASSERT(!page->frameCount());
80 Document* focusedDocument = page
[all...]
/external/webkit/Source/WebCore/page/
H A DPageGroupLoadDeferrer.cpp35 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page* page, bool deferSelf) argument
37 const HashSet<Page*>& pages = page->group().pages();
42 if ((deferSelf || otherPage != page)) {
63 if (Page* page = m_deferredFrames[i]->page())
64 page->setDefersLoading(true);
70 if (Page* page = m_deferredFrames[i]->page()) {
71 page->setDefersLoading(false);
73 for (Frame* frame = page
[all...]
/external/webkit/Source/WebCore/plugins/
H A DPluginData.cpp34 PluginData::PluginData(const Page* page) argument
36 initPlugins(page);
73 void PluginData::initPlugins(const Page* page) argument
77 platformStrategies()->pluginStrategy()->getPluginInfo(page, m_plugins);
/external/webkit/Source/WebKit/chromium/src/
H A DDebuggerAgentImpl.cpp65 WebCore::Page* DebuggerAgentImpl::page() function in class:WebKit::DebuggerAgentImpl
67 return m_webViewImpl->page();
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webpage/
H A Dmain.cpp39 QWebPage page; member in class:Thumbnailer
59 page.mainFrame()->load(url);
60 connect(&page, SIGNAL(loadFinished(bool)),
68 page.setViewportSize(page.mainFrame()->contentsSize());
69 QImage image(page.viewportSize(), QImage::Format_ARGB32);
72 page.mainFrame()->render(&painter);
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKTextChecker.cpp52 void WKTextCheckerCheckSpelling(WKPageRef page, bool startBeforeSelection) argument
54 WebTextChecker::shared()->checkSpelling(toImpl(page), startBeforeSelection);
57 void WKTextCheckerChangeSpellingToWord(WKPageRef page, WKStringRef word) argument
59 WebTextChecker::shared()->changeSpellingToWord(toImpl(page), toWTFString(word));

Completed in 683 milliseconds

1234567891011>>