/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | HashChangeEvent.h | 35 String newURL; member 45 static PassRefPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) in create() argument 47 return adoptRef(new HashChangeEvent(oldURL, newURL)); in create() 55 …omicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) in initHashChangeEvent() argument 63 m_newURL = newURL; in initHashChangeEvent() 67 const String& newURL() const { return m_newURL; } in newURL() function 77 HashChangeEvent(const String& oldURL, const String& newURL) in HashChangeEvent() argument 80 , m_newURL(newURL) in HashChangeEvent() 88 , m_newURL(initializer.newURL) in HashChangeEvent()
|
D | HashChangeEvent.idl | 28 [Default=Undefined] optional DOMString newURL); 30 [InitializedByEventConstructor] readonly attribute DOMString newURL;
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_editor_controller.mm | 76 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/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_editor_controller.mm | 111 GURL newURL = [self GURLFromUrlField]; 112 okEnabled = (newURL.is_valid()) ? YES : NO; 134 GURL newURL = [self GURLFromUrlField]; 135 if (!newURL.is_valid()) { 148 model->SetURL(node_, newURL); 156 newURL);
|
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/ |
D | NavigatorContentUtils.cpp | 85 String newURL = url; in verifyCustomHandlerURL() local 86 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1); in verifyCustomHandlerURL() 89 KURL kurl(base, newURL); in verifyCustomHandlerURL()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorFrontendHost.cpp | 144 void InspectorFrontendHost::inspectedURLChanged(const String& newURL) in inspectedURLChanged() argument 147 m_client->inspectedURLChanged(newURL); in inspectedURLChanged()
|
D | InspectorFrontendHost.idl | 37 void inspectedURLChanged(DOMString newURL);
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | DocumentLoader.cpp | 158 void DocumentLoader::updateForSameDocumentNavigation(const KURL& newURL) in updateForSameDocumentNavigation() argument 161 m_originalRequestCopy.setURL(newURL); in updateForSameDocumentNavigation() 162 m_request.setURL(newURL); in updateForSameDocumentNavigation() 166 appendRedirect(newURL); in updateForSameDocumentNavigation()
|
D | FrameLoader.cpp | 546 void FrameLoader::updateForSameDocumentNavigation(const KURL& newURL, SameDocumentNavigationSource … in updateForSameDocumentNavigation() argument 549 m_frame->document()->setURL(newURL); in updateForSameDocumentNavigation() 550 documentLoader()->updateForSameDocumentNavigation(newURL); in updateForSameDocumentNavigation() 567 m_currentItem->setURL(newURL); in updateForSameDocumentNavigation()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
D | FileTest.java | 2130 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/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | Workspace.js | 375 function innerCallback(success, newName, newURL, newOriginURL, newContentType) argument 385 callback(true, newName, newURL, newOriginURL, newContentType);
|
D | UISourceCode.js | 174 function innerCallback(success, newName, newURL, newOriginURL, newContentType) argument 177 …this._updateName(/** @type {string} */ (newName), /** @type {string} */ (newURL), /** @type {strin…
|
/external/chromium_org/third_party/libxml/src/ |
D | xmllint.c | 299 xmlChar *newURL; in xmllintExternalEntityLoader() local 301 newURL = xmlStrdup((const xmlChar *) paths[i]); in xmllintExternalEntityLoader() 302 newURL = xmlStrcat(newURL, (const xmlChar *) "/"); in xmllintExternalEntityLoader() 303 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment); in xmllintExternalEntityLoader() 304 if (newURL != NULL) { in xmllintExternalEntityLoader() 305 ret = defaultEntityLoader((const char *)newURL, ID, ctxt); in xmllintExternalEntityLoader() 315 newURL, in xmllintExternalEntityLoader() 318 xmlFree(newURL); in xmllintExternalEntityLoader() 321 xmlFree(newURL); in xmllintExternalEntityLoader()
|
/external/libxml2/ |
D | xmllint.c | 303 xmlChar *newURL; in xmllintExternalEntityLoader() local 305 newURL = xmlStrdup((const xmlChar *) paths[i]); in xmllintExternalEntityLoader() 306 newURL = xmlStrcat(newURL, (const xmlChar *) "/"); in xmllintExternalEntityLoader() 307 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment); in xmllintExternalEntityLoader() 308 if (newURL != NULL) { in xmllintExternalEntityLoader() 309 ret = defaultEntityLoader((const char *)newURL, ID, ctxt); in xmllintExternalEntityLoader() 319 newURL, in xmllintExternalEntityLoader() 322 xmlFree(newURL); in xmllintExternalEntityLoader() 325 xmlFree(newURL); in xmllintExternalEntityLoader()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | DOMWindow.h | 320 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
|
D | DOMWindow.cpp | 459 void DOMWindow::enqueueHashchangeEvent(const String& oldURL, const String& newURL) in enqueueHashchangeEvent() argument 461 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL)); in enqueueHashchangeEvent()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Document.cpp | 2588 const KURL& newURL = url.isEmpty() ? blankURL() : url; in setURL() local 2589 if (newURL == m_url) in setURL() 2592 m_url = newURL; in setURL() 4344 …IconURL newURL(linkElement->href(), linkElement->iconSizes(), linkElement->type(), linkElement->ic… in iconURLs() local 4348 firstFavicon = newURL; in iconURLs() 4352 firstTouchIcon = newURL; in iconURLs() 4356 firstTouchPrecomposedIcon = newURL; in iconURLs()
|