HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 1 - 25 of 2997) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/http/
http_util_icu.cc 16 std::string HttpUtil::PathForRequest(const GURL& url) {
17 DCHECK(url.is_valid() && (url.SchemeIs("http") || url.SchemeIs("https")));
18 if (url.has_query())
19 return url.path() + "?" + url.query();
20 return url.path();
24 std::string HttpUtil::SpecForRequest(const GURL& url) {
25 DCHECK(url.is_valid() && (url.SchemeIs("http") || url.SchemeIs("https")))
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
  /external/webkit/Source/WebKit/chromium/src/
WebURL.cpp 38 WebURL::WebURL(const WebCore::KURL& url)
39 : m_spec(url.utf8String())
40 , m_parsed(url.parsed())
41 , m_isValid(url.isValid())
45 WebURL& WebURL::operator=(const WebCore::KURL& url)
47 m_spec = url.utf8String();
48 m_parsed = url.parsed();
49 m_isValid = url.isValid();
  /external/webkit/Source/WebCore/dom/
BeforeLoadEvent.h 39 static PassRefPtr<BeforeLoadEvent> create(const String& url)
41 return adoptRef(new BeforeLoadEvent(url));
44 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url)
51 m_url = url;
54 const String& url() const { return m_url; } function in class:WebCore::BeforeLoadEvent
57 BeforeLoadEvent(const String& url)
59 , m_url(url)
  /external/webkit/Source/WebKit/chromium/public/
WebScriptSource.h 41 WebURL url; member in struct:WebKit::WebScriptSource
46 WebScriptSource(const WebString& code, const WebURL& url)
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) { }
  /packages/apps/Browser/src/com/android/browser/
LogTag.java 26 * @param url the url of the new bookmark.
29 public static void logBookmarkAdded(String url, String where) {
30 EventLog.writeEvent(EventLogTags.BROWSER_BOOKMARK_ADDED, url + "|"
41 * @param url the url of that page that finished loading.
44 public static void logPageFinishedLoading(String url, long duration) {
45 EventLog.writeEvent(EventLogTags.BROWSER_PAGE_LOADED, url + "|"
52 * @param url the url of the page that is being logged (old page)
    [all...]
  /external/webkit/Source/WebCore/platform/network/chromium/
DNSChromium.cpp 39 void ResourceHandle::prepareForURL(const KURL& url)
41 return prefetchDNS(url.host());
CookieJarChromium.cpp 40 void setCookies(Document* document, const KURL& url, const String& value)
42 PlatformBridge::setCookies(document, url, value);
45 String cookies(const Document* document, const KURL& url)
47 return PlatformBridge::cookies(document, url);
50 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url)
52 return PlatformBridge::cookieRequestHeaderFieldValue(document, url);
60 bool getRawCookies(const Document* document, const KURL& url, Vector<Cookie>& rawCookies)
62 return PlatformBridge::rawCookies(document, url, rawCookies);
65 void deleteCookie(const Document* document, const KURL& url, const String& cookieName)
67 return PlatformBridge::deleteCookie(document, url, cookieName)
    [all...]
  /frameworks/base/core/java/android/webkit/
URLUtil.java 62 // bug 762454: strip period off end of url
72 Log.v(LOGTAG, "smartUrlFilter: failed to parse url = " + inUrl);
109 public static byte[] decode(byte[] url) throws IllegalArgumentException {
110 if (url.length == 0) {
115 byte[] tempData = new byte[url.length];
118 for (int i = 0; i < url.length; i++) {
119 byte b = url[i];
121 if (url.length - i > 2) {
122 b = (byte) (parseHex(url[i + 1]) * 16
123 + parseHex(url[i + 2]))
    [all...]
WebTextView.java 22 import java.net.URL;
37 static final int URL = 7;
43 URL url = null; local
45 url = new URL(urlString);
47 Log.e(LOGTAG, "Unable to parse URL "+url);
50 return url != null ? url.getProtocol() + "://" + url.getHost() + url.getPath() : null
    [all...]
  /external/webkit/Source/WebCore/fileapi/
ThreadableBlobRegistry.cpp 42 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData)
43 : url(url.copy())
49 BlobRegistryContext(const KURL& url, const KURL& srcURL)
50 : url(url.copy())
55 BlobRegistryContext(const KURL& url)
56 : url(url.copy())
60 KURL url; member in struct:WebCore::BlobRegistryContext
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssItem.java 23 public String url; field in class:RssItem
29 public RssItem(String url, String title){
30 this.url = url;
  /external/chromium/net/ftp/
ftp_request_info.h 15 // The requested URL.
16 GURL url; member in class:net::FtpRequestInfo
  /external/webkit/Source/WebCore/loader/
PlaceholderDocument.h 35 static PassRefPtr<PlaceholderDocument> create(Frame* frame, const KURL& url)
37 return adoptRef(new PlaceholderDocument(frame, url));
43 PlaceholderDocument(Frame* frame, const KURL& url) : Document(frame, url, false, false) { }
  /external/webkit/Source/WebCore/platform/network/soup/
SoupURIUtils.cpp 28 // does not add the password to the URL when calling
35 KURL url(KURL(), String::fromUTF8(urlString.get()));
38 return url;
40 url.setPass(String::fromUTF8(soupURI->password));
41 return url;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowURLSpan.java 10 private String url; field in class:ShadowURLSpan
12 public void __constructor__(String url) {
13 this.url = url;
18 return url;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
zipfileset_mock.py 34 def __init__(self, url):
35 self._url = url
36 self._ziphash = ziphashes[url]
47 def maker(url):
49 return (None, MockZipFileSet(url))
  /external/webkit/Source/WebCore/page/
Location.cpp 50 inline const KURL& Location::url() const function in class:WebCore::Location
54 const KURL& url = m_frame->document()->url(); local
55 if (!url.isValid())
58 return url;
66 return url().string();
74 return url().protocol() + ":";
84 const KURL& url = this->url(); local
85 return url.hasPort() ? url.host() + ":" + String::number(url.port()) : url.host()
101 const KURL& url = this->url(); local
110 const KURL& url = this->url(); local
119 const KURL& url = this->url(); local
    [all...]
  /external/guava/guava/src/com/google/common/io/
Resources.java 28 import java.net.URL;
34 * Note that even though these methods use {@link URL} parameters, they
49 * read from the given URL.
51 * @param url the URL to read from
55 final URL url) {
56 checkNotNull(url);
60 return url.openStream();
67 * {@link InputStreamReader} that read a URL using the given character set
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGURIReference.cpp 45 String SVGURIReference::getTarget(const String& url)
47 if (url.startsWith("url(")) { // URI References, ie. fill:url(#target)
48 size_t start = url.find('#') + 1;
49 size_t end = url.reverseFind(')');
50 return url.substring(start, end - start);
52 if (url.find('#') != notFound) { // format is #target
53 size_t start = url.find('#') + 1;
54 return url.substring(start, url.length() - start)
    [all...]

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 91011>>