/libcore/luni/src/test/java/libcore/java/net/ |
URLTest.java | 22 import java.net.URL; 29 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); local 30 assertEquals("http", url.getProtocol()); 31 assertEquals("username:password@host:8080", url.getAuthority()); 32 assertEquals("username:password", url.getUserInfo()); 33 assertEquals("host", url.getHost()); 34 assertEquals(8080, url.getPort()); 35 assertEquals(80, url.getDefaultPort()) 43 URL url = new URL("http:\/\/www.google.com:80\/example?language[id]=2"); local 105 URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 121 final URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local 138 URL url = new URL("http:\/\/\/path"); local 145 URL url = new URL("http:\/path"); local 159 URL url = new URL("http:\/\/host"); local 166 URL url = new URL("http:\/\/"); local 180 URL url = new URL("http:"); local 202 URL url = new URL("http:\/\/user@host"); local 209 URL url = new URL("http:\/\/user@host:8080"); local 217 URL url = new URL("http:\/\/user:password@host:8080"); local 225 URL url = new URL("http:\/\/user:password@:8080"); local 233 URL url = new URL("http:\/\/user:password@"); local 241 URL url = new URL("http:\/\/host\/path"); local 247 URL url = new URL("http:\/\/host?query"); local 254 URL url = new URL("http:\/\/host#fragment"); local 261 URL url = new URL("http:\/\/host\/file@foo"); local 268 URL url = new URL("http:\/\/host\/file:colon"); local 274 URL url = new URL("http:\/\/host\/file?query\/path"); local 281 URL url = new URL("http:\/\/host\/file?query?another"); local 288 URL url = new URL("http:\/\/host\/file?query@at"); local 295 URL url = new URL("http:\/\/host\/file?query:colon"); local 302 URL url = new URL("http:\/\/host\/file#fragment?query"); local 310 URL url = new URL("http:\/\/host\/file#fragment:80"); local 318 URL url = new URL("http:\/\/host\/file#fragment\/path"); local 325 URL url = new URL("http", "host", "\/file#fragment\/path"); local 332 URL url = new URL("http:\/\/host\/file#fragment#another"); local 339 URL url = new URL("http:\/\/host:\/"); local 369 URL url = new URL(base, "another"); local 379 URL url = new URL(base, "#another"); local 388 URL url = new URL("http:\/\/host\/a\/b\/..\/c"); local 511 URL url = new URL("http:\/\/user:[::1]@host"); local 517 URL url = new URL("http", "host", "a"); local 526 URL url = new URL("http", null, "a"); local 535 URL url = new URL("file:\/\/\/\/foo"); local 542 URL url = new URL("file:\/\/x\/foo"); local 554 URL url = new URL("http:\/\/\/foo"); local 561 URL url = new URL("http:\/\/\/\/foo"); local 573 URL url = new URL("file:..\/a\/b"); local 579 URL url = new URL("http:\/\/.\/"); local 590 URL url = new URL("http", "[192.168.0.1]", "\/"); local 600 URL url = new URL("http", "[www.android.com]", "\/"); local 610 URL url = new URL("http", "fe80::1234", "\/"); local 615 URL url = new URL("http:\/\/[::1]:2\/"); local 625 URL url = new URL("http", "host", 80, "\/doc|search?q=green robots#over 6\\""); local 635 URL url = new URL("HTTP:\/\/host\/path"); local 640 URL url = new URL("http:\/\/\/path"); local 646 URL url = new URL("http:\/\/?query"); local 653 URL url = new URL("http:\/\/#fragment"); local [all...] |
/external/chromium/chrome/browser/ui/search_engines/ |
keyword_editor_controller.cc | 33 const std::string& url) { 34 DCHECK(!url.empty()); 42 template_url->SetURL(url, 0, 0); 58 const std::string& url) { 61 // Will happen if url was deleted out from under us while the user was 69 ((url.empty() && !template_url->url()) || 70 (!url.empty() && template_url->url() && 71 template_url->url()->url() == url))) [all...] |
/external/chromium/chrome/browser/net/ |
browser_url_util.cc | 16 void WriteURLToClipboard(const GURL& url, 19 if (url.is_empty() || !url.is_valid() || !clipboard) 24 string16 text = url.SchemeIs(chrome::kMailToScheme) ? 25 ASCIIToUTF16(url.path()) : 26 net::FormatUrl(url, languages, net::kFormatUrlOmitNothing,
|
preconnect.h | 21 void PreconnectOnUIThread(const GURL& url, 28 void PreconnectOnIOThread(const GURL& url,
|
/external/webkit/Source/WebCore/platform/network/android/ |
CookieJarAndroid.cpp | 34 void setCookies(Document* document, const KURL& url, const String& value) 36 PlatformBridge::setCookies(document, url, value); 39 String cookies(const Document* document, const KURL& url) 41 return PlatformBridge::cookies(document, url); 44 String cookieRequestHeaderFieldValue(const Document* document, const KURL& url) 47 return PlatformBridge::cookies(document, url);
|
ResourceRequest.h | 38 ResourceRequest(const String& url) 39 : ResourceRequestBase(KURL(ParsedURLString, url), UseProtocolCachePolicy) { } 41 ResourceRequest(const KURL& url) : ResourceRequestBase(url, UseProtocolCachePolicy) { } 43 ResourceRequest(const KURL& url, const String& referrer, ResourceRequestCachePolicy policy = UseProtocolCachePolicy) 44 : ResourceRequestBase(url, policy)
|
/external/webkit/Source/WebCore/platform/network/win/ |
ResourceRequest.h | 35 ResourceRequest(const String& url) 36 : ResourceRequestBase(KURL(ParsedURLString, url), UseProtocolCachePolicy) 40 ResourceRequest(const KURL& url) 41 : ResourceRequestBase(url, UseProtocolCachePolicy) 45 ResourceRequest(const KURL& url, const String& referrer, ResourceRequestCachePolicy policy = UseProtocolCachePolicy) 46 : ResourceRequestBase(url, policy)
|
/external/webkit/Source/WebKit2/Shared/API/c/ |
WKURL.cpp | 43 WKStringRef WKURLCopyString(WKURLRef url) 45 return toCopiedAPI(toImpl(url)->string()); 53 WKStringRef WKURLCopyHostName(WKURLRef url) 55 return toCopiedAPI(toImpl(url)->host()); 58 WKStringRef WKURLCopyScheme(WKURLRef url) 60 return toCopiedAPI(toImpl(url)->protocol());
|
/external/chromium/chrome/browser/content_settings/ |
content_settings_provider_unittest.cc | 29 GURL url("http://www.youtube.com"); 41 url, url, CONTENT_SETTINGS_TYPE_PLUGINS, "java_plugin")); 43 url, url, CONTENT_SETTINGS_TYPE_PLUGINS, "flash_plugin")); 45 url, url, CONTENT_SETTINGS_TYPE_GEOLOCATION, "")); 54 url, url, CONTENT_SETTINGS_TYPE_PLUGINS, "java_plugin")); 64 url, url, CONTENT_SETTINGS_TYPE_PLUGINS, "java_plugin")) [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
SourceTree.java | 38 * @param url The URI of the source tree. 40 public SourceTree(int root, String url) 43 m_url = url;
|
/external/chromium/chrome/browser/ |
load_from_memory_cache_details.cc | 8 const GURL& url, 12 : url_(url),
|
/external/chromium/chrome/browser/ui/options/ |
show_options_url.cc | 13 void ShowOptionsURL(Profile* profile, const GURL& url) { 17 browser->AddSelectedTabWithURL(url, PageTransition::LINK);
|
/external/chromium/chrome/common/ |
favicon_url.cc | 11 FaviconURL::FaviconURL(const GURL& url, IconType type) 12 : icon_url(url),
|
/external/chromium/net/base/ |
cookie_store.cc | 11 bool CookieStore::SetCookie(const GURL& url, const std::string& cookie_line) { 12 return SetCookieWithOptions(url, cookie_line, CookieOptions()); 15 std::string CookieStore::GetCookies(const GURL& url) { 16 return GetCookiesWithOptions(url, CookieOptions()); 20 const GURL& url, 24 SetCookieWithOptions(url, cookie_lines[i], options); 27 void CookieStore::SetCookies(const GURL& url, 29 SetCookiesWithOptions(url, cookie_lines, CookieOptions());
|
keygen_handler.cc | 15 const GURL& url) 18 url_(url),
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
return_object.js | 1 function FindProxyForURL(url, host) {
|
/external/chromium-trace/src/shared/css/ |
throbber.css | 6 background: url('chrome://resources/images/throbber.svg');
|
/external/expat/xmlwf/ |
xmlurl.h | 8 const XML_Char *url,
|
/external/webkit/Source/WebCore/html/ |
TextDocument.cpp | 32 TextDocument::TextDocument(Frame* frame, const KURL& url) 33 : HTMLDocument(frame, url)
|
/external/webkit/Source/WebCore/loader/ |
NavigationAction.cpp | 55 NavigationAction::NavigationAction(const KURL& url, NavigationType type) 56 : m_URL(url) 61 NavigationAction::NavigationAction(const KURL& url, FrameLoadType frameLoadType, 63 : m_URL(url) 68 NavigationAction::NavigationAction(const KURL& url, NavigationType type, PassRefPtr<Event> event) 69 : m_URL(url) 75 NavigationAction::NavigationAction(const KURL& url, FrameLoadType frameLoadType, 77 : m_URL(url)
|
/external/webkit/Source/WebCore/platform/android/ |
SSLKeyGeneratorAndroid.cpp | 38 String signedPublicKeyAndChallengeString(unsigned index, const String& challenge, const KURL& url) 40 return PlatformBridge::getSignedPublicKeyAndChallengeString(index, challenge, url);
|
/external/webkit/Source/WebCore/platform/chromium/ |
LinkHashChromium.cpp | 38 LinkHash visitedLinkHash(const UChar* url, unsigned length) 40 return PlatformBridge::visitedLinkHash(url, length);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
CookieClient.h | 40 virtual void setCookies(const KURL& url, const String& value) = 0; 41 virtual String cookies(const KURL& url) = 0;
|
/external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/ |
WKURLQt.h | 28 WK_EXPORT WKURLRef WKURLCreateWithQUrl(const QUrl& url); 29 QUrl WKURLCopyQUrl(WKURLRef url);
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieTest.java | 52 String url = "http://www.foo.com"; local 55 mCookieManager.setCookie(url, "a=b"); 56 String cookie = mCookieManager.getCookie(url); 60 mCookieManager.setCookie(url, "c=\"d;\""); 61 cookie = mCookieManager.getCookie(url); 68 String url = "http://www.foo.com"; local 71 mCookieManager.setCookie(url, "a=b"); 72 String cookie = mCookieManager.getCookie(url); 80 mCookieManager.setCookie(url, "c=d; domain=.foo.com"); 81 cookie = mCookieManager.getCookie(url); 147 String url = "http:\/\/foo.bar.com"; local 183 String url = "http:\/\/www.foo.com"; local 212 String url = "http:\/\/www.foobar.com"; local [all...] |