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

/external/webkit/Source/WebCore/dom/
H A DHashChangeEvent.h33 static PassRefPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) argument
35 return adoptRef(new HashChangeEvent(oldURL, newURL));
38 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
46 m_newURL = newURL;
50 const String& newURL() const { return m_newURL; } function in class:WebCore::HashChangeEvent
53 HashChangeEvent(const String& oldURL, const String& newURL) argument
56 , m_newURL(newURL)
H A DHashChangeEvent.idl30 in DOMString newURL);
32 readonly attribute DOMString newURL;
H A DDocument.cpp2316 const KURL& newURL = url.isEmpty() ? blankURL() : url; local
2317 if (newURL == m_url)
2320 m_url = newURL;
4785 void Document::enqueueHashchangeEvent(const String& oldURL, const String& newURL)
4787 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL));
H A DDocument.h1046 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
/external/webkit/Source/WebCore/inspector/
H A DInspectorFrontendHost.idl39 void inspectedURLChanged(in DOMString newURL);
H A DInspectorFrontendHost.cpp184 void InspectorFrontendHost::inspectedURLChanged(const String& newURL) argument
187 m_client->inspectedURLChanged(newURL);
/external/webkit/Source/WebCore/page/
H A DNavigator.cpp237 String newURL = url; local
238 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1);
241 KURL kurl(base, newURL);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DInspectorClientGtk.h95 virtual void inspectedURLChanged(const WTF::String& newURL);
H A DInspectorClientGtk.cpp298 void InspectorFrontendClient::inspectedURLChanged(const String& newURL) argument
303 webkit_web_inspector_set_inspected_uri(m_webInspector, newURL.utf8().data());
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DInspectorClientQt.h97 virtual void inspectedURLChanged(const String& newURL);
H A DInspectorClientQt.cpp363 void InspectorFrontendClientQt::inspectedURLChanged(const String& newURL) argument
365 m_inspectedURL = newURL;
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebInspectorClient.h103 virtual void inspectedURLChanged(const WTF::String& newURL);
H A DWebInspectorClient.mm187 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL)
189 m_inspectedURL = newURL;
/external/webkit/Source/WebCore/history/
H A DPageCache.cpp92 KURL newURL = frame->loader()->provisionalDocumentLoader() ? frame->loader()->provisionalDocumentLoader()->url() : KURL(); local
93 if (!newURL.isEmpty())
94 PCLOG(" Determining if frame can be cached navigating from (", currentURL.string(), ") to (", newURL.string(), "):");
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorClient.h112 virtual void inspectedURLChanged(const WTF::String& newURL);
H A DWebInspectorClient.cpp317 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL) argument
319 m_inspectedURL = newURL;
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp267 KURL newURL = KURL(job->firstRequest().url(), location); local
270 redirectedRequest.setURL(newURL);
274 d->m_firstRequest.setURL(newURL);
/external/libxml2/
H A Dxmllint.c294 xmlChar *newURL; local
296 newURL = xmlStrdup((const xmlChar *) paths[i]);
297 newURL = xmlStrcat(newURL, (const xmlChar *) "/");
298 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment);
299 if (newURL != NULL) {
300 ret = defaultEntityLoader((const char *)newURL, ID, ctxt);
310 newURL,
313 xmlFree(newURL);
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileTest.java2130 String newURL = f.getAbsolutePath();
2131 newURL = newURL.replace(File.separatorChar, '/');
2132 if (newURL.startsWith("/")) {
2133 newURL = "file:" + newURL;
2135 newURL = "file:/" + newURL;
2138 f.toURL().toString(), newURL);
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp552 BSTR newURL = SysAllocStringLen(NULL, SysStringLen(url)); local
553 wcscpy(newURL, fileTestString);
554 wcscpy(newURL + wcslen(fileTestString), start);
557 url = newURL;
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.cpp1345 void FrameLoader::loadURL(const KURL& newURL, const String& referrer, const String& frameName, bool lockHistory, FrameLoadType newLoadType, argument
1354 ResourceRequest request(newURL);
1369 targetFrame->loader()->loadURL(newURL, referrer, String(), lockHistory, newLoadType, event, formState.release());
1376 NavigationAction action(newURL, newLoadType, isFormSubmission, event);
1386 bool sameURL = shouldTreatURLAsSameAsCurrent(newURL);
1392 if (shouldScrollToAnchor(isFormSubmission, httpMethod, newLoadType, newURL)) {
1518 const KURL& newURL = loader->request().url(); local
1521 if (shouldScrollToAnchor(isFormSubmission, httpMethod, policyChecker()->loadType(), newURL)) {
1523 NavigationAction action(newURL, policyChecker()->loadType(), isFormSubmission);
1536 loader->setTriggeringAction(NavigationAction(newURL, policyChecke
[all...]
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceHandleSoup.cpp222 KURL newURL = KURL(handle->firstRequest().url(), location); local
226 request.setURL(newURL);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSURLExtras.mm615 NSURL *newURL = [newRequest URL];
616 NSURL *result = [[newURL retain] autorelease];

Completed in 2455 milliseconds