Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/events/
DHashChangeEvent.h32 String newURL; member
43 … static PassRefPtrWillBeRawPtr<HashChangeEvent> create(const String& oldURL, const String& newURL) in create() argument
45 return adoptRefWillBeNoop(new HashChangeEvent(oldURL, newURL)); in create()
53 …omicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) in initHashChangeEvent() argument
61 m_newURL = newURL; in initHashChangeEvent()
65 const String& newURL() const { return m_newURL; } in newURL() function
74 HashChangeEvent(const String& oldURL, const String& newURL) in HashChangeEvent() argument
77 , m_newURL(newURL) { } in HashChangeEvent()
82 , m_newURL(initializer.newURL) { } in HashChangeEvent()
DHashChangeEvent.idl28 [Default=Undefined] optional DOMString newURL);
30 [InitializedByEventConstructor] readonly attribute DOMString newURL;
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_editor_controller.mm112 GURL newURL = [self GURLFromUrlField];
113 okEnabled = (newURL.is_valid()) ? YES : NO;
135 GURL newURL = [self GURLFromUrlField];
136 if (!newURL.is_valid()) {
149 model->SetURL(node_, newURL);
157 newURL);
/external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
DNavigatorContentUtils.cpp84 String newURL = url; in verifyCustomHandlerURL() local
85 newURL.remove(index, WTF_ARRAY_LENGTH(token) - 1); in verifyCustomHandlerURL()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
DFileSystemWorkspaceBinding.js335 var newURL = this._workspace.urlForPath(this._fileSystem.path(), filePath);
339 callback(true, validNewName, newURL, newOriginURL, newContentType);
DUISourceCode.js165 function innerCallback(success, newName, newURL, newOriginURL, newContentType) argument
168 …this._updateName(/** @type {string} */ (newName), /** @type {string} */ (newURL), /** @type {strin…
DWorkspace.js460 function innerCallback(success, newName, newURL, newOriginURL, newContentType) argument
470 callback(true, newName, newURL, newOriginURL, newContentType);
/external/chromium_org/third_party/WebKit/Source/core/loader/
DDocumentLoader.cpp138 void DocumentLoader::updateForSameDocumentNavigation(const KURL& newURL, SameDocumentNavigationSour… in updateForSameDocumentNavigation() argument
141 m_originalRequest.setURL(newURL); in updateForSameDocumentNavigation()
142 m_request.setURL(newURL); in updateForSameDocumentNavigation()
150 appendRedirect(newURL); in updateForSameDocumentNavigation()
DFrameLoader.cpp540 void FrameLoader::updateForSameDocumentNavigation(const KURL& newURL, SameDocumentNavigationSource … in updateForSameDocumentNavigation() argument
543 m_frame->document()->setURL(newURL); in updateForSameDocumentNavigation()
544 documentLoader()->updateForSameDocumentNavigation(newURL, sameDocumentNavigationSource); in updateForSameDocumentNavigation()
/external/chromium_org/third_party/libxml/src/
Dxmllint.c299 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/
Dxmllint.c304 xmlChar *newURL; in xmllintExternalEntityLoader() local
306 newURL = xmlStrdup((const xmlChar *) paths[i]); in xmllintExternalEntityLoader()
307 newURL = xmlStrcat(newURL, (const xmlChar *) "/"); in xmllintExternalEntityLoader()
308 newURL = xmlStrcat(newURL, (const xmlChar *) lastsegment); in xmllintExternalEntityLoader()
309 if (newURL != NULL) { in xmllintExternalEntityLoader()
310 ret = defaultEntityLoader((const char *)newURL, ID, ctxt); in xmllintExternalEntityLoader()
320 newURL, in xmllintExternalEntityLoader()
323 xmlFree(newURL); in xmllintExternalEntityLoader()
326 xmlFree(newURL); in xmllintExternalEntityLoader()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocalDOMWindow.h312 void enqueueHashchangeEvent(const String& oldURL, const String& newURL);
DLocalDOMWindow.cpp472 void LocalDOMWindow::enqueueHashchangeEvent(const String& oldURL, const String& newURL) in enqueueHashchangeEvent() argument
474 enqueueWindowEvent(HashChangeEvent::create(oldURL, newURL)); in enqueueHashchangeEvent()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp2786 const KURL& newURL = url.isEmpty() ? blankURL() : url; in setURL() local
2787 if (newURL == m_url) in setURL()
2790 m_url = newURL; in setURL()
4708 …IconURL newURL(linkElement->href(), linkElement->iconSizes(), linkElement->type(), linkElement->ic… in iconURLs() local
4712 firstFavicon = newURL; in iconURLs()
4716 firstTouchIcon = newURL; in iconURLs()
4720 firstTouchPrecomposedIcon = newURL; in iconURLs()