Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/dom/
DHashChangeEvent.h33 static PassRefPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) in create() argument
35 return adoptRef(new HashChangeEvent(oldURL, newURL)); in create()
38 …omicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) in initHashChangeEvent() argument
46 m_newURL = newURL; in initHashChangeEvent()
50 const String& newURL() const { return m_newURL; } in newURL() function
53 HashChangeEvent(const String& oldURL, const String& newURL) in HashChangeEvent() argument
56 , m_newURL(newURL) in HashChangeEvent()
DHashChangeEvent.idl30 in DOMString newURL);
32 readonly attribute DOMString newURL;
DDocument.cpp2316 const KURL& newURL = url.isEmpty() ? blankURL() : url; in setURL() local
2317 if (newURL == m_url) in setURL()
2320 m_url = newURL; in setURL()
4785 void Document::enqueueHashchangeEvent(const String& oldURL, const String& newURL) in enqueueHashchangeEvent() argument
4787 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL)); in enqueueHashchangeEvent()
DDocument.h1046 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_editor_controller.mm76 GURL newURL = GURL([url UTF8String]);
77 if (!newURL.is_valid()) {
79 newURL = GURL([[NSString stringWithFormat:@"http://%@", url] UTF8String]);
81 return newURL;
88 GURL newURL = [self GURLFromUrlField];
89 okEnabled = (newURL.is_valid()) ? YES : NO;
111 GURL newURL = [self GURLFromUrlField];
112 if (!newURL.is_valid()) {
125 model->SetURL(node_, newURL);
133 newURL);
/external/webkit/Source/WebCore/page/
DNavigator.cpp237 String newURL = url; in verifyCustomHandlerURL() local
238 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1); in verifyCustomHandlerURL()
241 KURL kurl(base, newURL); in verifyCustomHandlerURL()
/external/webkit/Source/WebCore/inspector/
DInspectorFrontendHost.cpp184 void InspectorFrontendHost::inspectedURLChanged(const String& newURL) in inspectedURLChanged() argument
187 m_client->inspectedURLChanged(newURL); in inspectedURLChanged()
DInspectorFrontendHost.idl39 void inspectedURLChanged(in DOMString newURL);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DInspectorClientGtk.cpp298 void InspectorFrontendClient::inspectedURLChanged(const String& newURL) in inspectedURLChanged() argument
303 webkit_web_inspector_set_inspected_uri(m_webInspector, newURL.utf8().data()); in inspectedURLChanged()
DInspectorClientGtk.h95 virtual void inspectedURLChanged(const WTF::String& newURL);
/external/webkit/Source/WebCore/history/
DPageCache.cpp92 …KURL newURL = frame->loader()->provisionalDocumentLoader() ? frame->loader()->provisionalDocumentL… in logCanCacheFrameDecision() local
93 if (!newURL.isEmpty()) in logCanCacheFrameDecision()
94 …g if frame can be cached navigating from (", currentURL.string(), ") to (", newURL.string(), "):"); in logCanCacheFrameDecision()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DInspectorClientQt.h97 virtual void inspectedURLChanged(const String& newURL);
DInspectorClientQt.cpp363 void InspectorFrontendClientQt::inspectedURLChanged(const String& newURL) in inspectedURLChanged() argument
365 m_inspectedURL = newURL; in inspectedURLChanged()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebInspectorClient.h103 virtual void inspectedURLChanged(const WTF::String& newURL);
DWebInspectorClient.mm187 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL)
189 m_inspectedURL = newURL;
/external/libxml2/
Dxmllint.c294 xmlChar *newURL; in xmllintExternalEntityLoader() local
296 newURL = xmlStrdup((const xmlChar *) paths[i]); in xmllintExternalEntityLoader()
297 newURL = xmlStrcat(newURL, (const xmlChar *) "/"); in xmllintExternalEntityLoader()
298 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment); in xmllintExternalEntityLoader()
299 if (newURL != NULL) { in xmllintExternalEntityLoader()
300 ret = defaultEntityLoader((const char *)newURL, ID, ctxt); in xmllintExternalEntityLoader()
310 newURL, in xmllintExternalEntityLoader()
313 xmlFree(newURL); in xmllintExternalEntityLoader()
316 xmlFree(newURL); in xmllintExternalEntityLoader()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebInspectorClient.h112 virtual void inspectedURLChanged(const WTF::String& newURL);
DWebInspectorClient.cpp317 void WebInspectorFrontendClient::inspectedURLChanged(const String& newURL) in inspectedURLChanged() argument
319 m_inspectedURL = newURL; in inspectedURLChanged()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DFileTest.java2130 String newURL = f.getAbsolutePath(); in test_toURL() local
2131 newURL = newURL.replace(File.separatorChar, '/'); in test_toURL()
2132 if (newURL.startsWith("/")) { in test_toURL()
2133 newURL = "file:" + newURL; in test_toURL()
2135 newURL = "file:/" + newURL; in test_toURL()
2138 f.toURL().toString(), newURL); in test_toURL()
/external/webkit/Source/WebCore/platform/network/curl/
DResourceHandleManager.cpp267 KURL newURL = KURL(job->firstRequest().url(), location); in headerCallback() local
270 redirectedRequest.setURL(newURL); in headerCallback()
274 d->m_firstRequest.setURL(newURL); in headerCallback()
/external/webkit/Source/WebCore/loader/
DFrameLoader.cpp1345 void FrameLoader::loadURL(const KURL& newURL, const String& referrer, const String& frameName, bool… in loadURL() argument
1354 ResourceRequest request(newURL); in loadURL()
1369 …targetFrame->loader()->loadURL(newURL, referrer, String(), lockHistory, newLoadType, event, formSt… in loadURL()
1376 NavigationAction action(newURL, newLoadType, isFormSubmission, event); in loadURL()
1386 bool sameURL = shouldTreatURLAsSameAsCurrent(newURL); in loadURL()
1392 if (shouldScrollToAnchor(isFormSubmission, httpMethod, newLoadType, newURL)) { in loadURL()
1518 const KURL& newURL = loader->request().url(); in loadWithDocumentLoader() local
1521 if (shouldScrollToAnchor(isFormSubmission, httpMethod, policyChecker()->loadType(), newURL)) { in loadWithDocumentLoader()
1523 NavigationAction action(newURL, policyChecker()->loadType(), isFormSubmission); in loadWithDocumentLoader()
1536 …loader->setTriggeringAction(NavigationAction(newURL, policyChecker()->loadType(), isFormSubmission… in loadWithDocumentLoader()
/external/webkit/Tools/DumpRenderTree/win/
DDumpRenderTree.cpp552 BSTR newURL = SysAllocStringLen(NULL, SysStringLen(url)); in dumpHistoryItem() local
553 wcscpy(newURL, fileTestString); in dumpHistoryItem()
554 wcscpy(newURL + wcslen(fileTestString), start); in dumpHistoryItem()
557 url = newURL; in dumpHistoryItem()
/external/webkit/Source/WebCore/platform/network/soup/
DResourceHandleSoup.cpp222 KURL newURL = KURL(handle->firstRequest().url(), location); in restartedCallback() local
226 request.setURL(newURL); in restartedCallback()
/external/webkit/Source/WebKit/mac/Misc/
DWebNSURLExtras.mm615 NSURL *newURL = [newRequest URL];
616 NSURL *result = [[newURL retain] autorelease];
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3125780 (2) Renamed newURL to completeURL because the difference between newURL
25781 and URLString is that newURL is a KURL that is the complete version of URLString,

12