Searched refs:newURL (Results 1 - 25 of 28) sorted by last modified time

12

/macosx-10.9.5/CF-855.17/
H A DCFBundle.c1089 CFURLRef newURL = NULL; local
1093 newURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, (uint8_t *)buff, strlen(buff), true);
1094 if (!newURL) newURL = (CFURLRef)CFRetain(bundleURL);
1095 bundle = _CFBundleCopyBundleForURL(newURL, false);
1097 CFRelease(newURL);
1107 CFURLRef newURL = NULL; local
1112 newURL = CFURLCreateFromFileSystemRepresentation(allocator, (uint8_t *)buff, strlen(buff), true);
1113 if (!newURL) newURL
[all...]
H A DCFBundle_InfoPlist.c423 CFURLRef newURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, buff, strlen((char *)buff), true); local
424 if (!newURL) newURL = (CFURLRef)CFRetain(url);
426 localVersion = _CFBundleGetBundleVersionForURL(newURL);
428 dict = _CFBundleCopyInfoDictionaryInDirectoryWithVersion(alloc, newURL, localVersion);
429 CFRelease(newURL);
H A DCFBundle_Resources.c172 CFURLRef newURL = NULL; local
176 newURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, buff, strlen((char *)buff), true);
177 if (!newURL) newURL = (CFURLRef)CFRetain(bundleURL);
178 if (_CFBundleCouldBeBundle(newURL)) {
181 if (newURL) CFRelease(newURL);
188 CFURLRef newURL = NULL; local
192 newURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorSystemDefault, buff, strlen((char *)buff), true);
193 if (!newURL) newUR
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp2612 const KURL& newURL = url.isEmpty() ? blankURL() : url; local
2613 if (newURL == m_url)
2616 m_url = newURL;
4520 IconURL newURL(linkElement->href(), linkElement->iconSizes(), linkElement->type(), linkElement->iconType());
4521 m_iconURLs.append(newURL);
4932 void Document::enqueueHashchangeEvent(const String& oldURL, const String& newURL) argument
4934 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL));
H A DDocument.h1028 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
H A DHashChangeEvent.idl28 [Default=Undefined] optional DOMString newURL);
30 [InitializedByEventConstructor] readonly attribute DOMString newURL;
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFrameLoader.cpp1198 void FrameLoader::loadURL(const KURL& newURL, const String& referrer, const String& frameName, bool lockHistory, FrameLoadType newLoadType, argument
1209 ResourceRequest request(newURL);
1228 targetFrame->loader()->loadURL(newURL, referrer, "_self", lockHistory, newLoadType, event, formState.release());
1245 bool sameURL = shouldTreatURLAsSameAsCurrent(newURL);
1251 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, newLoadType, newURL)) {
1387 const KURL& newURL = loader->request().url(); local
1390 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, policyChecker()->loadType(), newURL)) {
/macosx-10.9.5/WebCore-7537.78.1/history/
H A DPageCache.cpp98 KURL newURL = frame->loader()->provisionalDocumentLoader() ? frame->loader()->provisionalDocumentLoader()->url() : KURL(); local
99 if (!newURL.isEmpty())
100 PCLOG(" Determining if frame can be cached navigating from (", currentURL.string(), ") to (", newURL.string(), "):");
/macosx-10.9.5/WebCore-7537.78.1/platform/network/curl/
H A DResourceHandleManager.cpp343 KURL newURL = KURL(job->firstRequest().url(), location); local
346 redirectedRequest.setURL(newURL);
350 d->m_firstRequest.setURL(newURL);
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebInspectorClient.cpp348 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL) argument
350 m_inspectedURL = newURL;
H A DWebInspectorClient.h114 virtual void inspectedURLChanged(const WTF::String& newURL);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSURLExtras.mm135 NSURL *newURL = [newRequest URL];
136 NSURL *result = [[newURL retain] autorelease];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebInspectorClient.mm294 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL)
296 m_inspectedURL = newURL;
H A DWebInspectorClient.h115 virtual void inspectedURLChanged(const String& newURL);
/macosx-10.9.5/libxml2-26/libxml2/
H A Dxmllint.c304 xmlChar *newURL; local
306 newURL = xmlStrdup((const xmlChar *) paths[i]);
307 newURL = xmlStrcat(newURL, (const xmlChar *) "/");
308 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment);
309 if (newURL != NULL) {
310 ret = defaultEntityLoader((const char *)newURL, ID, ctxt);
320 newURL,
323 xmlFree(newURL);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DNetworkJob.cpp675 KURL newURL(m_response.url(), location);
676 if (!newURL.isValid())
679 if (newURL.protocolIsData()) {
685 newRequest.setURL(newURL);
816 KURL newURL = m_response.url();
817 if (!newURL.isValid())
827 proxyInfo = BlackBerry::Platform::Settings::instance()->proxyInfo(newURL.string());
908 AuthenticationChallengeManager::instance()->authenticationChallenge(newURL, protectionSpace,
918 notifyChallengeResult(newURL, protectionSpace, AuthenticationChallengeSuccess, credential);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DResourceHandleSoup.cpp431 static bool shouldRedirectAsGET(SoupMessage* message, KURL& newURL, bool crossOrigin) argument
436 if (!newURL.protocolIsInHTTPFamily())
469 KURL newURL = KURL(soupURIToKURL(soup_message_get_uri(message)), location); local
470 bool crossOrigin = !protocolHostAndPortAreEqual(handle->firstRequest().url(), newURL);
471 newRequest.setURL(newURL);
472 newRequest.setFirstPartyForCookies(newURL);
477 if (message->method == SOUP_METHOD_GET || shouldRedirectAsGET(message, newURL, crossOrigin)) {
485 if (!newURL.protocolIs("https") && protocolIs(newRequest.httpReferrer(), "https") && handle->context()->shouldClearReferrerOnHTTPSToHTTPRedirect())
488 d->m_user = newURL.user();
489 d->m_pass = newURL
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorFrontendHost.cpp184 void InspectorFrontendHost::inspectedURLChanged(const String& newURL) argument
187 m_client->inspectedURLChanged(newURL);
H A DInspectorFrontendHost.idl42 void inspectedURLChanged(DOMString newURL);
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DInspectorClientGtk.cpp277 void InspectorFrontendClient::inspectedURLChanged(const String& newURL) argument
282 webkit_web_inspector_set_inspected_uri(m_webInspector.get(), newURL.utf8().data());
H A DInspectorClientGtk.h98 virtual void inspectedURLChanged(const WTF::String& newURL);
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DInspectorClientQt.cpp344 void InspectorFrontendClientQt::inspectedURLChanged(const String& newURL) argument
346 m_inspectedURL = newURL;
H A DInspectorClientQt.h101 virtual void inspectedURLChanged(const String& newURL);
/macosx-10.9.5/WebCore-7537.78.1/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp77 String newURL = url; local
78 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1);
81 KURL kurl(base, newURL);
/macosx-10.9.5/curl-78.94.1/curl/tests/libtest/
H A Dlib539.c30 char *newURL = NULL; local
61 newURL = malloc(strlen(URL) + 3);
62 if (newURL == NULL) {
67 newURL = strcat(strcpy(newURL, URL), "./");
71 free(newURL);
77 test_setopt(curl, CURLOPT_URL, newURL);
86 if(newURL)
87 free(newURL);

Completed in 244 milliseconds

12