Searched refs:page (Results 1 - 25 of 1007) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/page/
H A DVisitedLinkStore.cpp42 void VisitedLinkStore::addPage(Page& page) argument
44 ASSERT(!m_pages.contains(&page));
46 m_pages.add(&page);
49 void VisitedLinkStore::removePage(Page& page) argument
51 ASSERT(m_pages.contains(&page));
53 m_pages.remove(&page);
58 for (auto& page : m_pages)
59 page->invalidateStylesForAllLinks();
64 for (auto& page : m_pages)
65 page
[all...]
H A DBarProp.cpp53 Page* page = m_frame->page();
54 if (!page)
61 return page->chrome().toolbarsVisible();
63 return page->chrome().menubarVisible();
65 return page->chrome().scrollbarsVisible();
67 return page->chrome().statusbarVisible();
H A DDefaultVisitedLinkStore.cpp47 bool DefaultVisitedLinkStore::isLinkVisited(Page& page, LinkHash linkHash, const URL&, const AtomicString&) argument
49 return page.group().isLinkVisited(linkHash);
52 void DefaultVisitedLinkStore::addVisitedLink(Page& page, LinkHash linkHash) argument
54 page.group().addVisitedLinkHash(linkHash);
H A DPageGroupLoadDeferrer.cpp34 PageGroupLoadDeferrer::PageGroupLoadDeferrer(Page& page, bool deferSelf) argument
36 const HashSet<Page*>& pages = page.group().pages();
41 if ((deferSelf || otherPage != &page)) {
55 if (Page* page = m_deferredFrames[i]->page())
56 page->setDefersLoading(true);
62 if (Page* page = m_deferredFrames[i]->page()) {
63 page->setDefersLoading(false);
65 for (Frame* frame = &page
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundleBackForwardList.cpp43 Page* page = m_page->corePage();
44 if (!page)
46 return InjectedBundleBackForwardListItem::create(page->backForward().itemAtIndex(index));
53 Page* page = m_page->corePage();
54 if (!page)
56 return page->backForward().backCount();
63 Page* page = m_page->corePage();
64 if (!page)
66 return page->backForward().forwardCount();
73 Page* page
[all...]
H A DInjectedBundlePageFullScreenClient.cpp45 bool InjectedBundlePageFullScreenClient::supportsFullScreen(WebPage *page, bool withKeyboard) argument
48 return m_client.supportsFullScreen(toAPI(page), withKeyboard);
51 page->sendSync(Messages::WebFullScreenManagerProxy::SupportsFullScreen(withKeyboard), supports);
55 void InjectedBundlePageFullScreenClient::enterFullScreenForElement(WebPage *page, WebCore::Element *element) argument
59 m_client.enterFullScreenForElement(toAPI(page), toAPI(nodeHandle.get()));
61 page->send(Messages::WebFullScreenManagerProxy::EnterFullScreen());
64 void InjectedBundlePageFullScreenClient::exitFullScreenForElement(WebPage *page, WebCore::Element *element) argument
68 m_client.exitFullScreenForElement(toAPI(page), toAPI(nodeHandle.get()));
70 page->send(Messages::WebFullScreenManagerProxy::ExitFullScreen());
74 void InjectedBundlePageFullScreenClient::beganEnterFullScreen(WebPage *page, IntRec argument
83 beganExitFullScreen(WebPage *page, IntRect& initialFrame, IntRect& finalFrame) argument
91 closeFullScreen(WebPage *page) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/
H A DWKBundlePagePrivate.h37 WK_EXPORT void WKBundlePageStopLoading(WKBundlePageRef page);
38 WK_EXPORT void WKBundlePageSetDefersLoading(WKBundlePageRef page, bool defersLoading);
39 WK_EXPORT bool WKBundlePageIsEditingCommandEnabled(WKBundlePageRef page, WKStringRef commandName);
40 WK_EXPORT void WKBundlePageClearMainFrameName(WKBundlePageRef page);
41 WK_EXPORT void WKBundlePageClose(WKBundlePageRef page);
42 WK_EXPORT WKStringRef WKBundlePageCopyRenderTreeExternalRepresentation(WKBundlePageRef page);
43 WK_EXPORT WKStringRef WKBundlePageCopyRenderTreeExternalRepresentationForPrinting(WKBundlePageRef page);
44 WK_EXPORT void WKBundlePageExecuteEditingCommand(WKBundlePageRef page, WKStringRef commandName, WKStringRef argument);
46 WK_EXPORT double WKBundlePageGetTextZoomFactor(WKBundlePageRef page);
47 WK_EXPORT void WKBundlePageSetTextZoomFactor(WKBundlePageRef page, doubl
[all...]
H A DWKBundlePage.h53 WK_EXPORT void WKBundlePageWillEnterFullScreen(WKBundlePageRef page);
54 WK_EXPORT void WKBundlePageDidEnterFullScreen(WKBundlePageRef page);
55 WK_EXPORT void WKBundlePageWillExitFullScreen(WKBundlePageRef page);
56 WK_EXPORT void WKBundlePageDidExitFullScreen(WKBundlePageRef page);
60 WK_EXPORT void WKBundlePageSetContextMenuClient(WKBundlePageRef page, WKBundlePageContextMenuClientBase* client);
61 WK_EXPORT void WKBundlePageSetEditorClient(WKBundlePageRef page, WKBundlePageEditorClientBase* client);
62 WK_EXPORT void WKBundlePageSetFormClient(WKBundlePageRef page, WKBundlePageFormClientBase* client);
63 WK_EXPORT void WKBundlePageSetPageLoaderClient(WKBundlePageRef page, WKBundlePageLoaderClientBase* client);
64 WK_EXPORT void WKBundlePageSetResourceLoadClient(WKBundlePageRef page, WKBundlePageResourceLoadClientBase* client);
65 WK_EXPORT void WKBundlePageSetPolicyClient(WKBundlePageRef page, WKBundlePagePolicyClientBas
[all...]
/macosx-10.10/dcerpc-61/www/lib/
H A Dbreadcrumbs.rb5 # breadcrumbs( page ) => html
7 # Create breadcrumb links for the current page. This will return an HTML
10 def breadcrumbs( page )
11 list = ["<li>#{h(page.title)}</li>"]
13 page = @pages.parent_of(page)
14 break if page.nil?
15 list << "<li>#{link_to_page(page)}</li>"
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPage.h56 WK_EXPORT WKContextRef WKPageGetContext(WKPageRef page);
57 WK_EXPORT WKPageGroupRef WKPageGetPageGroup(WKPageRef page);
60 WK_EXPORT void WKPageLoadURL(WKPageRef page, WKURLRef url);
61 WK_EXPORT void WKPageLoadURLWithUserData(WKPageRef page, WKURLRef url, WKTypeRef userData);
62 WK_EXPORT void WKPageLoadURLRequest(WKPageRef page, WKURLRequestRef urlRequest);
63 WK_EXPORT void WKPageLoadURLRequestWithUserData(WKPageRef page, WKURLRequestRef urlRequest, WKTypeRef userData);
64 WK_EXPORT void WKPageLoadFile(WKPageRef page, WKURLRef fileURL, WKURLRef resourceDirectoryURL);
65 WK_EXPORT void WKPageLoadFileWithUserData(WKPageRef page, WKURLRef fileURL, WKURLRef resourceDirectoryURL, WKTypeRef userData);
68 WK_EXPORT void WKPageLoadData(WKPageRef page, WKDataRef data, WKStringRef MIMEType, WKStringRef encoding, WKURLRef baseURL);
69 WK_EXPORT void WKPageLoadDataWithUserData(WKPageRef page, WKDataRe
[all...]
H A DWKPagePrivate.h37 WK_EXPORT void WKPageRenderTreeExternalRepresentation(WKPageRef page, void *context, WKPageRenderTreeExternalRepresentationFunction function);
59 WK_EXPORT void WKPageSetPaginationMode(WKPageRef page, WKPaginationMode paginationMode);
60 WK_EXPORT WKPaginationMode WKPageGetPaginationMode(WKPageRef page);
61 WK_EXPORT void WKPageSetPaginationBehavesLikeColumns(WKPageRef page, bool behavesLikeColumns);
62 WK_EXPORT bool WKPageGetPaginationBehavesLikeColumns(WKPageRef page);
63 WK_EXPORT void WKPageSetPageLength(WKPageRef page, double pageLength);
64 WK_EXPORT double WKPageGetPageLength(WKPageRef page);
65 WK_EXPORT void WKPageSetGapBetweenPages(WKPageRef page, double gap);
66 WK_EXPORT double WKPageGetGapBetweenPages(WKPageRef page);
68 WK_EXPORT unsigned WKPageGetPageCount(WKPageRef page);
[all...]
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/Parser/
H A DJavaScriptPod.pm9 my ($self, $page) = @_;
10 return "http://www.openjsan.org/go/?t=l&q=" . URI::Escape::uri_escape($page);
H A DPerlPod.pm9 my ($self, $page) = @_;
10 return "http://search.cpan.org/perldoc?" . URI::Escape::uri_escape($page);
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/prebased-performance/
H A Dfoo.c31 struct page struct
33 struct page* other;
38 struct page p1 = { &p1 };
39 struct page p2 = { &p1 };
40 struct page p3 = { &p1 };
41 struct page p4 = { &p1 };
42 struct page p5 = { &p1 };
43 struct page p6 = { &p1 };
44 struct page p7 = { &p1 };
45 struct page p
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugInBrowserContextControllerInternal.h35 inline WKWebProcessPlugInBrowserContextController *wrapper(WebPage& page) argument
37 ASSERT([page.wrapper() isKindOfClass:[WKWebProcessPlugInBrowserContextController class]]);
38 return (WKWebProcessPlugInBrowserContextController *)page.wrapper();
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebSearchPopupMenu.cpp35 PassRefPtr<WebSearchPopupMenu> WebSearchPopupMenu::create(WebPage* page, PopupMenuClient* client) argument
37 return adoptRef(new WebSearchPopupMenu(page, client));
40 WebSearchPopupMenu::WebSearchPopupMenu(WebPage* page, PopupMenuClient* client) argument
41 : m_popup(WebPopupMenu::create(page, client))
55 WebPage* page = m_popup->page();
56 if (!page)
59 WebProcess::shared().parentProcessConnection()->send(Messages::WebPageProxy::SaveRecentSearches(name, searchItems), page->pageID());
67 WebPage* page = m_popup->page();
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py7 page = pydoc.html.page(
11 return page
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py7 page = pydoc.html.page(
11 return page
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-WebKit-2.5.1/Examples/PyDocURLProtocol/
H A Dpydochelper.py7 page = pydoc.html.page(
11 return page
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfrm_page.c39 | Function : int set_form_page(FORM * form,int page)
41 | Description : Set the page number of the form.
44 | E_BAD_ARGUMENT - invalid form pointer or page number
50 set_form_page(FORM *form, int page) argument
54 T((T_CALLED("set_form_page(%p,%d)"), form, page));
56 if (!form || (page < 0) || (page >= form->maxpage))
61 form->curpage = page;
70 if (form->curpage != page)
78 err = _nc_Set_Form_Page(form, page, (FIEL
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebFindClient.cpp33 void WebFindClient::didFindString(WebPageProxy* page, const String& string, uint32_t matchCount, int32_t) argument
38 m_client.didFindString(toAPI(page), toAPI(string.impl()), matchCount, m_client.base.clientInfo);
41 void WebFindClient::didFailToFindString(WebPageProxy* page, const String& string) argument
46 m_client.didFailToFindString(toAPI(page), toAPI(string.impl()), m_client.base.clientInfo);
49 void WebFindClient::didCountStringMatches(WebPageProxy* page, const String& string, uint32_t matchCount) argument
54 m_client.didCountStringMatches(toAPI(page), toAPI(string.impl()), matchCount, m_client.base.clientInfo);
57 void WebFindMatchesClient::didFindStringMatches(WebPageProxy* page, const String& string, API::Array* matches, int firstIndex) argument
62 m_client.didFindStringMatches(toAPI(page), toAPI(string.impl()), toAPI(matches), firstIndex, m_client.base.clientInfo);
65 void WebFindMatchesClient::didGetImageForMatchResult(WebPageProxy* page, WebImage* image, uint32_t index) argument
69 m_client.didGetImageForMatchResult(toAPI(page), toAP
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Battery/
H A DWebBatteryManager.cpp58 void WebBatteryManager::registerWebPage(WebPage* page) argument
62 m_pageSet.add(page);
68 void WebBatteryManager::unregisterWebPage(WebPage* page) argument
70 m_pageSet.remove(page);
80 for (auto* page : m_pageSet) {
81 if (page->corePage())
82 BatteryController::from(page->corePage())->didChangeBatteryStatus(eventType, status.get());
90 for (auto* page : m_pageSet) {
91 if (page->corePage())
92 BatteryController::from(page
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dpagesmanager.rb27 def add(page, &b)
28 win = window(tk_send('add', tagid(page)))
44 def delete(page)
45 tk_send('delete', tagid(page))
49 def get_frame(page, &b)
50 win = window(tk_send('getframe', tagid(page)))
61 def get_page(page)
62 tk_send('pages', page)
69 def raise(page=None)
70 tk_send('raise', page)
[all...]
/macosx-10.10/WebCore-7600.1.25/history/
H A DCachedPage.cpp52 CachedPage::CachedPage(Page& page) argument
54 , m_expirationTime(m_timeStamp + page.settings().backForwardCacheExpirationInterval())
55 , m_cachedMainFrame(std::make_unique<CachedFrame>(page.mainFrame()))
76 void CachedPage::restore(Page& page) argument
80 ASSERT(!page.subframeCount());
86 Document* focusedDocument = page.focusController().focusedOrMainFrame().document();
91 page.mainFrame().selection().suppressScrolling();
94 FrameView* frameView = page.mainFrame().view();
104 page.mainFrame().selection().restoreScrolling();
109 for (Frame* frame = &page
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DUserMediaController.cpp47 void provideUserMediaTo(Page* page, UserMediaClient* client) argument
49 if (!Supplement<Page>::from(page, UserMediaController::supplementName()))
50 UserMediaController::provideTo(page, UserMediaController::supplementName(), std::make_unique<UserMediaController>(client));

Completed in 224 milliseconds

1234567891011>>