Lines Matching refs:url
1086 // On the mac there's an about url protocol implementation but CFNetwork doesn't have that.
1087 if (equalIgnoringCase(String(request.url().protocol()), "about"))
2430 /* [retval][out] */ BSTR* /*url*/)
2664 mainFrameURL = m_mainFrame->url().string();
2947 /* [in] */ BSTR url,
2950 String userAgentString = userAgentForKURL(MarshallingHelpers::BSTRToKURL(url));
3566 if (FAILED(request->URL(urlString)))
4218 /* [in] */ BSTR url)
4220 m_page->focusController()->focusedOrMainFrame()->editor()->copyURL(MarshallingHelpers::BSTRToKURL(url), "");
4513 RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithString(kCFAllocatorDefault, urlString.get(), 0));
4515 // Check if the passed in string is a path and convert it to a URL.
4517 // in an URL here. See <rdar://problem/5478378>
4518 if (!url) {
4526 url.adoptCF(CFURLCreateFromFileSystemRepresentation(0, utf8Path.data(), result - 1, false));
4529 settings->setUserStyleSheetLocation(url.get());
5832 HRESULT WebView::addUserScriptToGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR source, BSTR url,
5850 pageGroup->addUserScriptToWorld(world->world(), toString(source), toKURL(url),
5857 HRESULT WebView::addUserStyleSheetToGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR source, BSTR url,
5874 pageGroup->addUserStyleSheetToWorld(world->world(), toString(source), toKURL(url),
5880 HRESULT WebView::removeUserScriptFromGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR url)
5895 pageGroup->removeUserScriptFromWorld(world->world(), toKURL(url));
5900 HRESULT WebView::removeUserStyleSheetFromGroup(BSTR groupName, IWebScriptWorld* iWorld, BSTR url)
5915 pageGroup->removeUserStyleSheetFromWorld(world->world(), toKURL(url));
6023 BSTR url = visitedURLs[i];
6024 unsigned length = SysStringLen(url);
6025 group.addVisitedLink(url, length);
6031 void WebView::downloadURL(const KURL& url)
6035 COMPtr<WebDownload> download(AdoptCOM, WebDownload::createInstance(url, m_downloadDelegate.get()));