HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 701 - 725 of 1269) sorted by null

<<21222324252627282930>>

  /external/libpng/contrib/gregbook/
writepng.h 106 char *url; member in struct:_mainprog_info
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 38 super(http.method, http.url.toExternalForm(), null);
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 67 super(in.method, in.url);
  /external/protobuf/python/
ez_setup.py 84 as an egg for download under the `download_base` URL (which should end with
125 as an egg for download under the `download_base` URL (which should end
131 url = download_base + egg_name variable
152 version, download_base, delay, url
154 log.warn("Downloading %s", url)
155 src = urllib2.urlopen(url)
  /external/webkit/WebCore/bindings/js/
JSXMLHttpRequestCustom.cpp 68 const KURL& url = impl()->scriptExecutionContext()->completeURL(args.at(1).toString(exec)); local
80 impl()->open(method, url, async, user, password, ec);
82 impl()->open(method, url, async, user, ec);
84 impl()->open(method, url, async, ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 91 // open(method, url)
92 // open(method, url, async)
93 // open(method, url, async, user)
94 // open(method, url, async, user, passwd)
107 KURL url = context->completeURL(urlstring);
118 xmlHttpRequest->open(method, url, async, user, passwd, ec);
120 xmlHttpRequest->open(method, url, async, user, ec);
122 xmlHttpRequest->open(method, url, async, ec);
  /external/webkit/WebCore/css/
CSSStyleSheet.cpp 216 KURL CSSStyleSheet::completeURL(const String& url) const
218 // Always return a null URL when passed a null string.
221 if (url.isNull() || m_charset.isEmpty())
222 return StyleSheet::completeURL(url);
224 return KURL(baseURL(), url, encoding);
StyleSheet.h 45 // Note that href is the URL that started the redirect chain that led to
62 virtual KURL completeURL(const String& url) const;
  /external/webkit/WebCore/dom/
ProcessingInstruction.cpp 153 String url = document()->completeURL(href).string(); local
154 if (!dispatchBeforeLoadEvent(url))
162 m_cachedSheet = document()->docLoader()->requestXSLStyleSheet(url);
170 m_cachedSheet = document()->docLoader()->requestCSSStyleSheet(url, charset);
  /external/webkit/WebCore/history/
CachedFrame.h 50 const KURL& url() const { return m_url; } function in class:WebCore::CachedFrameBase
HistoryItem.h 82 static PassRefPtr<HistoryItem> create(const KURL& url, const String& target, const String& parent, const String& title)
84 return adoptRef(new HistoryItem(url, target, parent, title));
105 KURL url() const;
207 HistoryItem(const KURL& url, const String& frameName, const String& parent, const String& title);
  /external/webkit/WebCore/inspector/front-end/
ConsoleView.js 224 if (msg.url in WebInspector.resourceURLMap) {
225 msg.resource = WebInspector.resourceURLMap[msg.url];
274 msgCopy = new WebInspector.ConsoleMessage(msg.source, msg.type, msg.level, msg.line, msg.url, msg.groupLevel, count - prevRepeatCount);
590 WebInspector.ConsoleMessage = function(source, type, level, line, url, groupLevel, repeatCount)
596 this.url = url;
767 if (this.url && this.url !== "undefined") {
769 urlElement.className = "console-message-url webkit-html-resource-link";
770 urlElement.href = this.url;
    [all...]
ImageView.js 41 this.imagePreviewElement.setAttribute("src", this.resource.url);
  /external/webkit/WebCore/loader/
CachedImage.h 42 CachedImage(const String& url);
ResourceLoadNotifier.cpp 123 StringImpl* oldRequestURL = request.url().string().impl();
124 m_frame->loader()->documentLoader()->didTellClientAboutLoad(request.url());
128 // If the URL changed, then we want to put that new URL in the "did tell client" set too.
129 if (!request.isNull() && oldRequestURL != request.url().string().impl())
130 m_frame->loader()->documentLoader()->didTellClientAboutLoad(request.url());
  /external/webkit/WebCore/manual-tests/inspector-wrappers/
inspector-wrappers-test-utils.js 18 var url = prompt("Test failed. To prove it, I'm going " +
21 "also try a file:// URL.", "http://www.example.com/");
22 xhr.open("GET", url, false);
30 "<p>View this page from an http:// URL to ensure that it's in a different " +
  /external/webkit/WebCore/page/
EventSource.cpp 56 EventSource::EventSource(const String& url, ScriptExecutionContext* context, ExceptionCode& ec)
65 if (url.isEmpty() || !(m_url = context->completeURL(url)).isValid()) {
135 String EventSource::url() const function in class:WebCore::EventSource
  /external/webkit/WebCore/platform/graphics/
MediaPlayerPrivate.h 43 virtual void load(const String& url) = 0;
  /external/webkit/WebCore/platform/graphics/android/
MediaPlayerPrivateAndroid.h 44 virtual void load(const String& url) = 0;
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.h 76 void load(const UChar* url, int len, bool preservesPitch);
  /external/webkit/WebCore/platform/gtk/
DataObjectGtk.h 61 String url();
  /external/webkit/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 107 RetainPtr<CFURLRef> url(AdoptCF, ResourceRequest::url().createCFURL());
111 CFURLRequestSetURL(cfRequest, url.get());
116 cfRequest = CFURLRequestCreateMutable(0, url.get(), (CFURLRequestCachePolicy)cachePolicy(), timeoutInterval(), firstPartyForCookies.get());
  /external/webkit/WebCore/platform/network/soup/
ResourceResponseSoup.cpp 35 SoupMessage* soupMessage = soup_message_new("GET", url().string().utf8().data());
  /external/webkit/WebCore/platform/qt/
ClipboardQt.cpp 225 void ClipboardQt::declareAndWriteDragImage(Element* element, const KURL& url, const String& title, Frame* frame)
229 //WebCore::writeURL(m_writableDataObject.get(), url, title, true, false);
249 urls.append(url);
260 void ClipboardQt::writeURL(const KURL& url, const String& title, Frame* frame)
265 urls.append(frame->document()->completeURL(url.string()));
  /external/webkit/WebCore/websockets/
WebSocket.h 73 const KURL& url() const;

Completed in 1936 milliseconds

<<21222324252627282930>>