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

1234567891011>>

/macosx-10.10.1/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...]
H A DInjectedBundleBackForwardList.h40 static PassRefPtr<InjectedBundleBackForwardList> create(WebPage* page) argument
42 return adoptRef(new InjectedBundleBackForwardList(page));
54 InjectedBundleBackForwardList(WebPage* page) : m_page(page) { } argument
H A DInjectedBundlePageLoaderClient.cpp46 void InjectedBundlePageLoaderClient::willLoadURLRequest(WebPage* page, const ResourceRequest& request, API::Object* userData) argument
51 m_client.willLoadURLRequest(toAPI(page), toAPI(request), toAPI(userData), m_client.base.clientInfo);
60 void InjectedBundlePageLoaderClient::willLoadDataRequest(WebPage* page, const ResourceRequest& request, SharedBuffer* sharedBuffer, const String& MIMEType, const String& encodingName, const URL& unreachableURL, API::Object* userData) argument
71 m_client.willLoadDataRequest(toAPI(page), toAPI(request), toAPI(data.get()), toAPI(MIMEType.impl()), toAPI(encodingName.impl()), toURLRef(unreachableURL.string().impl()), toAPI(userData), m_client.base.clientInfo);
74 bool InjectedBundlePageLoaderClient::shouldGoToBackForwardListItem(WebPage* page, InjectedBundleBackForwardListItem* item, RefPtr<API::Object>& userData) argument
80 bool result = m_client.shouldGoToBackForwardListItem(toAPI(page), toAPI(item), &userDataToPass, m_client.base.clientInfo);
86 void InjectedBundlePageLoaderClient::didStartProvisionalLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
92 m_client.didStartProvisionalLoadForFrame(toAPI(page), toAPI(frame), &userDataToPass, m_client.base.clientInfo);
96 void InjectedBundlePageLoaderClient::didReceiveServerRedirectForProvisionalLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
102 m_client.didReceiveServerRedirectForProvisionalLoadForFrame(toAPI(page), toAP
106 didFailProvisionalLoadWithErrorForFrame(WebPage* page, WebFrame* frame, const ResourceError& error, RefPtr<API::Object>& userData) argument
116 didCommitLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
126 didFinishDocumentLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
136 didFinishLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
146 didFinishProgress(WebPage* page) argument
154 didFailLoadWithErrorForFrame(WebPage* page, WebFrame* frame, const ResourceError& error, RefPtr<API::Object>& userData) argument
164 didSameDocumentNavigationForFrame(WebPage* page, WebFrame* frame, SameDocumentNavigationType type, RefPtr<API::Object>& userData) argument
174 didReceiveTitleForFrame(WebPage* page, const String& title, WebFrame* frame, RefPtr<API::Object>& userData) argument
194 didDisplayInsecureContentForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
204 didRunInsecureContentForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
214 didDetectXSSForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
224 didFirstLayoutForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
234 didFirstVisuallyNonEmptyLayoutForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) argument
244 didLayoutForFrame(WebPage* page, WebFrame* frame) argument
252 didLayout(WebPage* page, LayoutMilestones milestones, RefPtr<API::Object>& userData) argument
262 didClearWindowObjectForFrame(WebPage* page, WebFrame* frame, DOMWrapperWorld& world) argument
270 didCancelClientRedirectForFrame(WebPage* page, WebFrame* frame) argument
278 willPerformClientRedirectForFrame(WebPage* page, WebFrame* frame, const String& url, double delay, double date) argument
286 didHandleOnloadEventsForFrame(WebPage* page, WebFrame* frame) argument
294 globalObjectIsAvailableForFrame(WebPage* page, WebFrame* frame, WebCore::DOMWrapperWorld& world) argument
303 willDisconnectDOMWindowExtensionFromGlobalObject(WebPage* page, WebCore::DOMWindowExtension* coreExtension) argument
313 didReconnectDOMWindowExtensionToGlobalObject(WebPage* page, WebCore::DOMWindowExtension* coreExtension) argument
323 willDestroyGlobalObjectForDOMWindowExtension(WebPage* page, WebCore::DOMWindowExtension* coreExtension) argument
333 shouldForceUniversalAccessFromLocalURL(WebPage* page, const String& url) argument
341 featuresUsedInPage(WebPage* page, const Vector<String>& features) argument
349 willDestroyFrame(WebPage* page, WebFrame* frame) argument
[all...]
H A DInjectedBundlePageResourceLoadClient.cpp36 void InjectedBundlePageResourceLoadClient::didInitiateLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceRequest& request, bool pageIsProvisionallyLoading) argument
41 m_client.didInitiateLoadForResource(toAPI(page), toAPI(frame), identifier, toAPI(request), pageIsProvisionallyLoading, m_client.base.clientInfo);
44 void InjectedBundlePageResourceLoadClient::willSendRequestForFrame(WebPage* page, WebFrame* frame, uint64_t identifier, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
49 RefPtr<API::URLRequest> returnedRequest = adoptRef(toImpl(m_client.willSendRequestForFrame(toAPI(page), toAPI(frame), identifier, toAPI(request), toAPI(redirectResponse), m_client.base.clientInfo)));
56 void InjectedBundlePageResourceLoadClient::didReceiveResponseForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceResponse& response) argument
61 m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), identifier, toAPI(response), m_client.base.clientInfo);
64 void InjectedBundlePageResourceLoadClient::didReceiveContentLengthForResource(WebPage* page, WebFrame* frame, uint64_t identifier, uint64_t contentLength) argument
69 m_client.didReceiveContentLengthForResource(toAPI(page), toAPI(frame), identifier, contentLength, m_client.base.clientInfo);
72 void InjectedBundlePageResourceLoadClient::didFinishLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier) argument
77 m_client.didFinishLoadForResource(toAPI(page), toAP
80 didFailLoadForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceError& error) argument
88 shouldCacheResponse(WebPage* page, WebFrame* frame, uint64_t identifier) argument
96 shouldUseCredentialStorage(WebPage* page, WebFrame* frame, uint64_t identifier) argument
[all...]
/macosx-10.10.1/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.1/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.1/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...]
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));
/macosx-10.10.1/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.1/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.1/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.1/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.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py7 page = pydoc.html.page(
11 return page
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-WebKit/Examples/PyDocURLProtocol/
H A Dpydochelper.py7 page = pydoc.html.page(
11 return page
/macosx-10.10.1/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.1/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.1/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.1/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.1/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.1/BerkeleyDB-21/db/db/
H A Ddb_upg_opd.c19 #define GET_PAGE(dbp, fhp, pgno, page) { \
24 fhp, page, (dbp)->pgsize, &n)) != 0) \
27 #define PUT_PAGE(dbp, fhp, pgno, page) { \
32 fhp, page, (dbp)->pgsize, &n)) != 0) \
38 * Convert 3.0 off-page duplicates to 3.1 off-page duplicates.
50 PAGE *ipage, *page; local
58 ipage = page = NULL;
61 /* Allocate room to hold a page. */
62 if ((ret = __os_malloc(dbp->env, dbp->pgsize, &page)) !
328 PAGE *page; local
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/mac/
H A DWKPagePrivateMac.cpp42 bool WKPageIsURLKnownHSTSHost(WKPageRef page, WKURLRef url) argument
44 WebPageProxy* webPageProxy = toImpl(page);

Completed in 207 milliseconds

1234567891011>>