Searched defs:completeURL (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/bindings/generic/
H A DGenericBinding.h54 KURL completeURL(State<Binding>* state, const String& relativeURL) function in namespace:WebCore
61 return frame->loader()->completeURL(relativeURL);
/external/webkit/Source/WebCore/css/
H A DStyleSheet.cpp83 KURL StyleSheet::completeURL(const String& url) const function in class:WebCore::StyleSheet
87 // See also Document::completeURL(const String&)
H A DCSSStyleSheet.cpp266 KURL CSSStyleSheet::completeURL(const String& url) const function in class:WebCore::CSSStyleSheet
270 // See also Document::completeURL(const String&)
272 return StyleSheet::completeURL(url);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Utilities.cpp112 KURL completeURL(const String& relativeURL) function in namespace:WebCore
114 return completeURL(V8BindingState::Only(), relativeURL);
/external/webkit/Source/WebKit/chromium/src/
H A DWebDocument.cpp114 WebURL WebDocument::completeURL(const WebString& partialURL) const function in class:WebKit::WebDocument
116 return constUnwrap<Document>()->completeURL(partialURL);
H A DWebPageSerializerImpl.cpp332 String completeURL = subFrame ? subFrame->frame()->document()->url() : local
333 param->document->completeURL(attrValue);
335 if (m_localLinks.contains(completeURL)) {
338 result += m_localLinks.get(completeURL);
340 result += completeURL;
/external/webkit/Source/WebCore/dom/
H A DScriptExecutionContext.h88 KURL completeURL(const String& url) const { return virtualCompleteURL(url); } function in class:WebCore::ScriptExecutionContext
H A DDocument.cpp2300 return completeURL(url);
2373 // FIXME: Since this doesn't share code with completeURL it may not handle encodings correctly.
2656 url = completeURL(url).string();
3920 KURL Document::completeURL(const String& url) const function in class:WebCore::Document
3924 // See also [CSS]StyleSheet::completeURL(const String&)
/external/webkit/Source/WebCore/html/
H A DHTMLFrameElementBase.cpp66 const KURL& completeURL = document()->completeURL(m_URL); local
68 if (protocolIsJavaScript(completeURL)) {
83 if (equalIgnoringFragmentIdentifier(frame->document()->url(), completeURL)) {
205 return document()->completeURL(getAttribute(srcAttr));
/external/webkit/Source/WebCore/loader/
H A DSubframeLoader.cpp77 scriptURL = completeURL(urlString); // completeURL() encodes the URL.
80 url = completeURL(urlString);
96 completedURL = completeURL(url);
137 completedURL = completeURL(url);
157 completedURL = completeURL(url);
205 KURL codeBaseURL = completeURL(codeBaseURLString);
214 KURL baseURL = completeURL(baseURLString);
364 KURL SubframeLoader::completeURL(const String& url) const function in class:WebCore::SubframeLoader
367 return m_frame->document()->completeURL(ur
[all...]
H A DFrameLoader.cpp636 url = m_frame->document()->completeURL(url).string();
938 KURL FrameLoader::completeURL(const String& url) function in class:WebCore::FrameLoader
941 return m_frame->document()->completeURL(url);
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceLoader.cpp111 KURL url = m_document->completeURL(resourceURL);
134 KURL completeURL = m_document->completeURL(url); local
135 if (completeURL.isValid() && canRequest(CachedResource::ImageResource, completeURL))
136 PingLoader::loadImage(f, completeURL);
307 KURL url = m_document->completeURL(resourceURL);
548 KURL kurl = m_document->completeURL(url);
703 if (!cachedResource(m_document->completeURL(preload.m_url)))
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.cpp144 return completeURL(url);
147 KURL WorkerContext::completeURL(const String& url) const function in class:WebCore::WorkerContext
238 const KURL& url = scriptExecutionContext()->completeURL(*it);
390 KURL completedURL = completeURL(url);
409 KURL completedURL = completeURL(url);

Completed in 189 milliseconds