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

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/net/
URLTest.java 24 import java.net.URL;
31 URL url = new URL("http://username:password@host:8080/directory/file?query#ref"); local
32 assertEquals("http", url.getProtocol());
33 assertEquals("username:password@host:8080", url.getAuthority());
34 assertEquals("username:password", url.getUserInfo());
35 assertEquals("host", url.getHost());
36 assertEquals(8080, url.getPort());
37 assertEquals(80, url.getDefaultPort())
45 URL url = new URL("http:\/\/www.google.com:80\/example?language[id]=2"); local
107 URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local
123 final URL url = new URL("http:\/\/user:pass@host\/path\/file?query#hash"); local
140 URL url = new URL("http:\/\/\/path"); local
147 URL url = new URL("http:\/path"); local
161 URL url = new URL("http:\/\/host"); local
168 URL url = new URL("http:\/\/"); local
182 URL url = new URL("http:"); local
204 URL url = new URL("http:\/\/user@host"); local
211 URL url = new URL("http:\/\/user@host:8080"); local
219 URL url = new URL("http:\/\/user:password@host:8080"); local
227 URL url = new URL("http:\/\/user:password@:8080"); local
235 URL url = new URL("http:\/\/user:password@"); local
243 URL url = new URL("http:\/\/host\/path"); local
249 URL url = new URL("http:\/\/host?query"); local
256 URL url = new URL("http:\/\/host#fragment"); local
263 URL url = new URL("http:\/\/host\/file@foo"); local
270 URL url = new URL("http:\/\/host\/file:colon"); local
276 URL url = new URL("http:\/\/host\/file?query\/path"); local
283 URL url = new URL("http:\/\/host\/file?query?another"); local
290 URL url = new URL("http:\/\/host\/file?query@at"); local
297 URL url = new URL("http:\/\/host\/file?query:colon"); local
304 URL url = new URL("http:\/\/host\/file#fragment?query"); local
312 URL url = new URL("http:\/\/host\/file#fragment:80"); local
320 URL url = new URL("http:\/\/host\/file#fragment\/path"); local
327 URL url = new URL("http", "host", "\/file#fragment\/path"); local
334 URL url = new URL("http:\/\/host\/file#fragment#another"); local
341 URL url = new URL("http:\/\/host:\/"); local
371 URL url = new URL(base, "another"); local
381 URL url = new URL(base, "#another"); local
390 URL url = new URL("http:\/\/host\/a\/b\/..\/c"); local
513 URL url = new URL("http:\/\/user:[::1]@host"); local
519 URL url = new URL("http", "host", "a"); local
528 URL url = new URL("http", null, "a"); local
537 URL url = new URL("file:\/\/\/\/foo"); local
544 URL url = new URL("file:\/\/x\/foo"); local
556 URL url = new URL("http:\/\/\/foo"); local
563 URL url = new URL("http:\/\/\/\/foo"); local
575 URL url = new URL("file:..\/a\/b"); local
581 URL url = new URL("http:\/\/.\/"); local
592 URL url = new URL("http", "[192.168.0.1]", "\/"); local
602 URL url = new URL("http", "[www.android.com]", "\/"); local
612 URL url = new URL("http", "fe80::1234", "\/"); local
617 URL url = new URL("http:\/\/[::1]:2\/"); local
627 URL url = new URL("http", "host", 80, "\/doc|search?q=green robots#over 6\\""); local
637 URL url = new URL("HTTP:\/\/host\/path"); local
642 URL url = new URL("http:\/\/\/path"); local
648 URL url = new URL("http:\/\/?query"); local
655 URL url = new URL("http:\/\/#fragment"); local
693 URL url = new URL("http:\/\/a_b.c.d.net\/"); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/
chrome_web_ui_factory.cc 68 // may be NULL (for example, if the URL refers to an non-existent extension).
70 const GURL& url);
74 WebUI* NewWebUI(TabContents* contents, const GURL& url) {
80 WebUI* NewWebUI<ExtensionWebUI>(TabContents* contents, const GURL& url) {
85 service->ExtensionBindingsAllowed(url)) {
86 return new ExtensionWebUI(contents, url);
92 // tab, based on its URL. Returns NULL if the URL doesn't have WebUI associated
96 const GURL& url) {
97 if (url.host() == chrome::kChromeUIDialogHost
    [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/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);
  /external/webkit/Source/WebCore/dom/
BeforeLoadEvent.idl 33 in DOMString url);
34 readonly attribute DOMString url;

Completed in 784 milliseconds

12 3 4 5 6 7 8 91011>>