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

/macosx-10.10/WebCore-7600.1.25/dom/
H A DHashChangeEvent.h35 String newURL; member in struct:WebCore::HashChangeEventInit
45 static PassRefPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) argument
47 return adoptRef(new HashChangeEvent(oldURL, newURL));
55 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
63 m_newURL = newURL;
67 const String& newURL() const { return m_newURL; } function in class:WebCore::HashChangeEvent
76 HashChangeEvent(const String& oldURL, const String& newURL) argument
79 , m_newURL(newURL)
86 , m_newURL(initializer.newURL)
H A DHashChangeEvent.idl28 [Default=Undefined] optional DOMString newURL);
30 [InitializedByEventConstructor] readonly attribute DOMString newURL;
H A DDocument.cpp2589 const URL& newURL = url.isEmpty() ? blankURL() : url; local
2590 if (newURL == m_url)
2593 m_url = newURL;
4618 IconURL newURL(linkElement->href(), linkElement->iconSizes(), linkElement->type(), linkElement->iconType());
4619 m_iconURLs.append(newURL);
5057 void Document::enqueueHashchangeEvent(const String& oldURL, const String& newURL) argument
5059 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL));
H A DDocument.h1109 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
/macosx-10.10/curl-83.1.2/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);
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DThreadableBlobRegistry.h48 static void registerBlobURLForSlice(const URL& newURL, const URL& srcURL, long long start, long long end);
H A DThreadableBlobRegistry.cpp147 void ThreadableBlobRegistry::registerBlobURLForSlice(const URL& newURL, const URL& srcURL, long long start, long long end) argument
150 blobRegistry().registerBlobURLForSlice(newURL, srcURL, start, end);
153 BlobRegistryContext* context = new BlobRegistryContext(newURL, srcURL);
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DBlobDataFileReferenceMac.mm63 [coordinator coordinateReadingItemAtURL:[NSURL fileURLWithPath:m_path] options:NSFileCoordinatorReadingWithoutChanges error:nullptr byAccessor:^(NSURL *newURL) {
77 if (!BOMCopierCopyWithOptions(copier, newURL.path.fileSystemRepresentation, archivePath.data(), (__bridge CFDictionaryRef)options))
/macosx-10.10/WebCore-7600.1.25/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.cpp84 String newURL = url; local
85 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1);
87 URL kurl(baseURL, newURL);
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorFrontendHost.idl42 void inspectedURLChanged(DOMString newURL);
H A DInspectorFrontendHost.cpp185 void InspectorFrontendHost::inspectedURLChanged(const String& newURL) argument
188 m_client->inspectedURLChanged(newURL);
/macosx-10.10/libxslt-13/libxslt/xsltproc/
H A Dxsltproc.c177 xmlChar *newURL; local
179 newURL = xmlStrdup((const xmlChar *) paths[i]);
180 newURL = xmlStrcat(newURL, (const xmlChar *) "/");
181 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment);
182 if (newURL != NULL) {
183 ret = defaultEntityLoader((const char *)newURL, ID, ctxt);
191 newURL,
194 xmlFree(newURL);
[all...]
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCP.c167 CFURLRef newURL = NULL; local
181 newURL = CFURLCreateWithFileSystemPath(NULL, newPath, kCFURLPOSIXPathStyle, FALSE);
182 if (CFURLResourceIsReachable(newURL, NULL) == FALSE) {
190 CFRelease(newURL);
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceHandleCFURLConnectionDelegate.cpp124 CFURLRef newURL = CFURLRequestGetURL(newRequest);
125 RetainPtr<CFStringRef> newScheme = adoptCF(CFURLCopyScheme(newURL));
134 RetainPtr<CFURLRef> newAbsoluteURL = adoptCF(CFURLCopyAbsoluteURL(newURL));
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebInspectorClient.h124 virtual void inspectedURLChanged(const String& newURL);
H A DWebInspectorClient.mm303 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL)
305 m_inspectedURL = newURL;
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebInspectorClient.h114 virtual void inspectedURLChanged(const WTF::String& newURL);
H A DWebInspectorClient.cpp349 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL) argument
351 m_inspectedURL = newURL;
/macosx-10.10/WebCore-7600.1.25/platform/network/soup/
H A DResourceHandleSoup.cpp402 static bool shouldRedirectAsGET(SoupMessage* message, URL& newURL, bool crossOrigin) argument
407 if (!newURL.protocolIsInHTTPFamily())
459 URL newURL = URL(URL(soup_message_get_uri(message)), location); local
460 bool crossOrigin = !protocolHostAndPortAreEqual(handle->firstRequest().url(), newURL);
461 newRequest.setURL(newURL);
462 newRequest.setFirstPartyForCookies(newURL);
467 if (message->method == SOUP_METHOD_GET || shouldRedirectAsGET(message, newURL, crossOrigin)) {
475 if (!newURL.protocolIs("https") && protocolIs(newRequest.httpReferrer(), "https") && handle->context()->shouldClearReferrerOnHTTPSToHTTPRedirect())
478 d->m_user = newURL.user();
479 d->m_pass = newURL
[all...]
/macosx-10.10/WebCore-7600.1.25/history/
H A DPageCache.cpp101 URL newURL = frame->loader().provisionalDocumentLoader() ? frame->loader().provisionalDocumentLoader()->url() : URL(); local
102 if (!newURL.isEmpty())
103 PCLOG(" Determining if frame can be cached navigating from (", currentURL.string(), ") to (", newURL.string(), "):");
/macosx-10.10/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.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmllint.c299 xmlChar *newURL; local
301 newURL = xmlStrdup((const xmlChar *) paths[i]);
302 newURL = xmlStrcat(newURL, (const xmlChar *) "/");
303 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment);
304 if (newURL != NULL) {
305 ret = defaultEntityLoader((const char *)newURL, ID, ctxt);
315 newURL,
318 xmlFree(newURL);
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DResourceHandleManager.cpp512 URL newURL = URL(job->firstRequest().url(), location); local
515 redirectedRequest.setURL(newURL);
519 d->m_firstRequest.setURL(newURL);
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebCoreNSURLExtras.mm789 NSURL *newURL = [newRequest URL];
790 return [[newURL retain] autorelease];
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFrameLoader.cpp1251 void FrameLoader::loadURL(const URL& newURL, const String& referrer, const String& frameName, LockHistory lockHistory, FrameLoadType newLoadType, argument
1262 ResourceRequest request(newURL);
1281 targetFrame->loader().loadURL(newURL, referrer, "_self", lockHistory, newLoadType, event, formState.release(), allowNavigationToInvalidURL);
1299 bool sameURL = shouldTreatURLAsSameAsCurrent(newURL);
1305 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, newLoadType, newURL)) {
1446 const URL& newURL = loader->request().url(); local
1449 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, policyChecker().loadType(), newURL)) {

Completed in 223 milliseconds