Home
last modified time | relevance | path

Searched full:url (Results 1 – 25 of 6227) sorted by relevance

12345678910>>...250

/external/chromium_org/tools/perf/page_sets/
Dkey_desktop_sites.json8 "url": "http://facebook.com", string
11 { "url": "http://youtube.com" }, string
12 { "url": "http://twitter.com/nbc" }, string
13 { "url": "http://bbc.co.uk" }, string
14 { "url": "http://imdb.com" }, string
15 { "url": "http://espn.go.com" }, string
16 { "url": "http://cnn.com" }, string
17 { "url": "http://bbc.co.uk/news/" }, string
18 { "url": "http://weather.com" }, string
19 { "url": "http://livejournal.com" }, string
[all …]
D2012Q3.json13 { "url": "http://www.facebook.com/barackobama" }, string
14 { "url": "https://www.google.com/search?q=barack%20obama" }, string
15 { "url": "http://youtube.com" }, string
16 { "url": "http://yahoo.com" }, string
17 { "url": "http://www.baidu.com/s?wd=barack+obama" }, string
18 { "url": "http://en.wikipedia.org/wiki/Wikipedia" }, string
19 { "url": "http://qq.com" }, string
20 { "url": "http://www.amazon.com/Kindle-Fire-Amazon-Tablet/dp/B0051VVOB2" }, string
21 { "url": "http://googleblog.blogspot.com/" }, string
22 { "url": "http://taobao.com" }, string
[all …]
Dalexa1-10000.json8 "url": "http://www.facebook.com/", string
12 "url": "http://www.google.com/", string
16 "url": "http://www.youtube.com/", string
20 "url": "http://www.yahoo.com/", string
24 "url": "http://baidu.com/", string
28 "url": "http://www.amazon.com/", string
32 "url": "http://www.wikipedia.org/", string
36 "url": "http://www.qq.com/", string
40 "url": "http://www.live.com/", string
44 "url": "http://www.taobao.com/", string
[all …]
Dtough_canvas_cases.json11 { "url":"http://mudcu.be/labs/JS1k/BreathingGalaxies.html" }, string
12 { "url":"http://runway.countlessprojects.com/prototype/performance_test.html" }, string
13 { "url":"http://geoapis.appspot.com/agdnZW9hcGlzchMLEgtFeGFtcGxlQ29kZRjh1wIM" }, string
14 { "url":"http://ie.microsoft.com/testdrive/Graphics/HowStuffWorksGears/Default.html" }, string
15 { "url":"http://ie.microsoft.com/testdrive/Performance/FishIETank/Default.html" }, string
16 { "url":"http://ie.microsoft.com/testdrive/Performance/SpeedReading/Default.html" }, string
17 { "url":"http://acko.net/dumpx/996b.html" }, string
18 { "url":"http://www.kevs3d.co.uk/dev/canvask3d/k3d_test.html" }, string
19 { "url":"http://www.megidish.net/awjs/" }, string
22 "url":"http://ie.microsoft.com/testdrive/Performance/Fireflies/Default.html" string
[all …]
/external/chromium_org/third_party/libjingle/source/talk/base/
Dhttpcommon_unittest.cc40 TEST(Url, DecomposesUrls) { in TEST() argument
41 Url<char> url(TEST_URL); in TEST() local
42 EXPECT_TRUE(url.valid()); in TEST()
43 EXPECT_FALSE(url.secure()); in TEST()
44 EXPECT_STREQ(TEST_HOST, url.host().c_str()); in TEST()
45 EXPECT_EQ(80, url.port()); in TEST()
46 EXPECT_STREQ(TEST_PATH, url.path().c_str()); in TEST()
47 EXPECT_STREQ(TEST_QUERY, url.query().c_str()); in TEST()
48 EXPECT_STREQ(TEST_HOST, url.address().c_str()); in TEST()
49 EXPECT_STREQ(TEST_PATH TEST_QUERY, url.full_path().c_str()); in TEST()
[all …]
/external/guava/guava/src/com/google/common/io/
DResources.java28 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) { in newInputStreamSupplier() argument
56 checkNotNull(url); in newInputStreamSupplier()
60 return url.openStream(); in newInputStreamSupplier()
67 * {@link InputStreamReader} that read a URL using the given character set.
69 * @param url the URL to read from
70 * @param charset the character set used when reading the URL contents
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMURLUtils.cpp41 KURL url = impl->url(); in setProtocol() local
42 if (url.isNull()) in setProtocol()
44 url.setProtocol(value); in setProtocol()
45 impl->setURL(url); in setProtocol()
50 KURL url = impl->url(); in setUsername() local
51 if (url.isNull()) in setUsername()
53 url.setUser(value); in setUsername()
54 impl->setURL(url); in setUsername()
59 KURL url = impl->url(); in setPassword() local
60 if (url.isNull()) in setPassword()
[all …]
/external/chromium_org/chrome/browser/sync_file_system/local/
Dlocal_file_sync_status_unittest.cc9 #include "url/gurl.h"
24 FileSystemURL URL(const char* spec) { in URL() function
33 status.StartWriting(URL(kFile)); in TEST()
34 status.StartWriting(URL(kFile)); in TEST()
35 status.EndWriting(URL(kFile)); in TEST()
37 EXPECT_TRUE(status.IsWriting(URL(kFile))); in TEST()
38 EXPECT_TRUE(status.IsWriting(URL(kParent))); in TEST()
39 EXPECT_TRUE(status.IsWriting(URL(kChild))); in TEST()
40 EXPECT_FALSE(status.IsWriting(URL(kOther1))); in TEST()
41 EXPECT_FALSE(status.IsWriting(URL(kOther2))); in TEST()
[all …]
Dlocal_file_change_tracker_unittest.cc68 FileSystemURL URL(const std::string& path) { in URL() function in sync_file_system::LocalFileChangeTrackerTest
69 return file_system_.URL(path); in URL()
80 void VerifyAndClearChange(const FileSystemURL& url, in VerifyAndClearChange() argument
82 SCOPED_TRACE(testing::Message() << url.DebugString() << in VerifyAndClearChange()
84 // Get the changes for URL and verify. in VerifyAndClearChange()
86 change_tracker()->GetChangesForURL(url, &changes); in VerifyAndClearChange()
88 SCOPED_TRACE(testing::Message() << url.DebugString() << in VerifyAndClearChange()
92 // Clear the URL from the change tracker. in VerifyAndClearChange()
93 change_tracker()->ClearChangesForURL(url); in VerifyAndClearChange()
130 change_tracker()->OnCreateDirectory(URL(kPath0)); in TEST_F()
[all …]
Dlocal_file_sync_status.cc18 void LocalFileSyncStatus::StartWriting(const FileSystemURL& url) { in StartWriting() argument
20 DCHECK(!IsChildOrParentSyncing(url)); in StartWriting()
21 writing_[url]++; in StartWriting()
24 void LocalFileSyncStatus::EndWriting(const FileSystemURL& url) { in EndWriting() argument
26 int count = --writing_[url]; in EndWriting()
28 writing_.erase(url); in EndWriting()
29 FOR_EACH_OBSERVER(Observer, observer_list_, OnSyncEnabled(url)); in EndWriting()
33 void LocalFileSyncStatus::StartSyncing(const FileSystemURL& url) { in StartSyncing() argument
35 DCHECK(!IsChildOrParentWriting(url)); in StartSyncing()
36 DCHECK(!IsChildOrParentSyncing(url)); in StartSyncing()
[all …]
/external/chromium_org/
D.gitmodules3 url = https://chromium.googlesource.com/external/google-breakpad/src.git
7 url =
11 url = https://chromium.googlesource.com/chromium/deps/xz.git
15 url = https://chromium.googlesource.com/native_client/src/native_client/tests/prebuilt.git
19 url = https://chromium.googlesource.com/chromium/canvas_bench.git
23 url = https://chromium.googlesource.com/chromium/frame_rate/content.git
27 url = https://chromium.googlesource.com/chromium/reference_builds/chrome_linux.git
31 url = https://chromium.googlesource.com/chromium/reference_builds/chrome_mac.git
35 url = https://chromium.googlesource.com/chromium/reference_builds/chrome_win.git
39 url = https://chromium.googlesource.com/chromium/reference_builds/chrome_win.git
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DURLTest.java31 import java.net.URL;
44 protected URLConnection openConnection(URL u) in openConnection()
50 URL u;
52 URL u1;
54 URL u2;
56 URL u3;
58 URL u4;
60 URL u5;
62 URL u6;
69 * @tests java.net.URL#URL(java.lang.String)
[all …]
DURLClassLoaderTest.java25 import java.net.URL;
64 public URL getResource(String res) { in getResource()
66 return new URL("http://test/BogusClassLoader"); in getResource()
75 public URLClassLoaderExt(URL[] urls) { in URLClassLoaderExt()
85 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[])
88 URL[] u = new URL[0]; in test_Constructor$Ljava_net_URL()
94 URLClassLoader loader = new URLClassLoader(new URL[] { null }); in test_Constructor$Ljava_net_URL()
104 * @tests java.net.URLClassLoader#URLClassLoader(java.net.URL[],
109 URL[] u = new URL[0]; in test_Constructor$Ljava_net_URLLjava_lang_ClassLoader()
111 URL res = ucl.getResource("J"); in test_Constructor$Ljava_net_URLLjava_lang_ClassLoader()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/blob/
DBlobRegistry.cpp68 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData) in BlobRegistryContext()
69 : url(url.copy()) in BlobRegistryContext()
75 BlobRegistryContext(const KURL& url, const String& type) in BlobRegistryContext()
76 : url(url.copy()) in BlobRegistryContext()
81 BlobRegistryContext(const KURL& url, const KURL& srcURL) in BlobRegistryContext()
82 : url(url.copy()) in BlobRegistryContext()
87 BlobRegistryContext(const KURL& url, PassRefPtr<RawData> streamData) in BlobRegistryContext()
88 : url(url.copy()) in BlobRegistryContext()
93 BlobRegistryContext(const KURL& url) in BlobRegistryContext()
94 : url(url.copy()) in BlobRegistryContext()
[all …]
/external/chromium_org/chrome/browser/ui/webui/
Dbidi_checker_web_ui_test.cc309 std::string url(chrome::kChromeUISettingsFrameURL); in IN_PROC_BROWSER_TEST_F() local
310 url += std::string(chrome::kAutofillSubPage); in IN_PROC_BROWSER_TEST_F()
311 RunBidiCheckerOnPage(url); in IN_PROC_BROWSER_TEST_F()
330 std::string url(chrome::kChromeUISettingsFrameURL); in IN_PROC_BROWSER_TEST_F() local
331 url += std::string(chrome::kAutofillSubPage); in IN_PROC_BROWSER_TEST_F()
332 RunBidiCheckerOnPage(url); in IN_PROC_BROWSER_TEST_F()
337 std::string url(chrome::kChromeUISettingsFrameURL); in IN_PROC_BROWSER_TEST_F() local
338 url += std::string(chrome::kClearBrowserDataSubPage); in IN_PROC_BROWSER_TEST_F()
339 RunBidiCheckerOnPage(url); in IN_PROC_BROWSER_TEST_F()
344 std::string url(chrome::kChromeUISettingsFrameURL); in IN_PROC_BROWSER_TEST_F() local
[all …]
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocation.cpp50 inline const KURL& Location::url() const in url() function in WebCore::Location
54 const KURL& url = m_frame->document()->url(); in url() local
55 if (!url.isValid()) in url()
58 return url; in url()
66 return url().string(); in href()
73 return DOMURLUtilsReadOnly::protocol(url()); in protocol()
80 return DOMURLUtilsReadOnly::host(url()); in host()
87 return DOMURLUtilsReadOnly::hostname(url()); in hostname()
94 return DOMURLUtilsReadOnly::port(url()); in port()
101 return DOMURLUtilsReadOnly::pathname(url()); in pathname()
[all …]
/external/chromium_org/tools/perf/page_sets/page_cycler/
Dintl1.json5 { "url": "file://../../../../data/page_cycler/intl1/126.com/" }, string
6 { "url": "file://../../../../data/page_cycler/intl1/2ch.net/" }, string
7 { "url": "file://../../../../data/page_cycler/intl1/6park.com/" }, string
8 { "url": "file://../../../../data/page_cycler/intl1/affili.net/" }, string
9 { "url": "file://../../../../data/page_cycler/intl1/allegro.pl/" }, string
10 { "url": "file://../../../../data/page_cycler/intl1/apeha.ru/" }, string
11 { "url": "file://../../../../data/page_cycler/intl1/baidu.com/" }, string
12 { "url": "file://../../../../data/page_cycler/intl1/bbs.wefong.com/" }, string
13 { "url": "file://../../../../data/page_cycler/intl1/blog.skyrock.com/" }, string
14 { "url": "file://../../../../data/page_cycler/intl1/cmfu.com/" }, string
[all …]
Dmoz.json5 { "url": "file://../../../../data/page_cycler/moz/bugzilla.mozilla.org/" }, string
6 { "url": "file://../../../../data/page_cycler/moz/espn.go.com/" }, string
7 { "url": "file://../../../../data/page_cycler/moz/home.netscape.com/" }, string
8 { "url": "file://../../../../data/page_cycler/moz/hotwired.lycos.com/" }, string
9 { "url": "file://../../../../data/page_cycler/moz/lxr.mozilla.org/" }, string
10 { "url": "file://../../../../data/page_cycler/moz/my.netscape.com/" }, string
11 { "url": "file://../../../../data/page_cycler/moz/news.cnet.com/" }, string
12 { "url": "file://../../../../data/page_cycler/moz/slashdot.org/" }, string
13 { "url": "file://../../../../data/page_cycler/moz/vanilla-page/" }, string
14 { "url": "file://../../../../data/page_cycler/moz/web.icq.com/" }, string
[all …]
Dmoz2.json5 { "url": "file://../../../../data/page_cycler/moz2/bugzilla.mozilla.org/" }, string
6 { "url": "file://../../../../data/page_cycler/moz2/espn.go.com/" }, string
7 { "url": "file://../../../../data/page_cycler/moz2/home.netscape.com/" }, string
8 { "url": "file://../../../../data/page_cycler/moz2/hotwired.lycos.com/" }, string
9 { "url": "file://../../../../data/page_cycler/moz2/lxr.mozilla.org/" }, string
10 { "url": "file://../../../../data/page_cycler/moz2/my.netscape.com/" }, string
11 { "url": "file://../../../../data/page_cycler/moz2/news.cnet.com/" }, string
12 { "url": "file://../../../../data/page_cycler/moz2/slashdot.org/" }, string
13 { "url": "file://../../../../data/page_cycler/moz2/vanilla-page/" }, string
14 { "url": "file://../../../../data/page_cycler/moz2/web.icq.com/" }, string
[all …]
/external/chromium/chrome/browser/ui/webui/
Dchrome_web_ui_factory.cc68 // 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) { in NewWebUI() argument
80 WebUI* NewWebUI<ExtensionWebUI>(TabContents* contents, const GURL& url) { in NewWebUI() argument
85 service->ExtensionBindingsAllowed(url)) { in NewWebUI()
86 return new ExtensionWebUI(contents, url); in NewWebUI()
92 // tab, based on its URL. Returns NULL if the URL doesn't have WebUI associated
96 const GURL& url) { in GetWebUIFactoryFunction() argument
97 if (url.host() == chrome::kChromeUIDialogHost) in GetWebUIFactoryFunction()
101 if (service && service->ExtensionBindingsAllowed(url)) in GetWebUIFactoryFunction()
[all …]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
Dfile_types.css8 url('../../common/images/file_types/100/generic.png') 1x,
9 url('../../common/images/file_types/200/generic.png') 2x);
18 url('../../common/images/file_types/100/generic_white.png') 1x,
19 url('../../common/images/file_types/200/generic_white.png') 2x);
24 url('../../common/images/file_types/100/archive.png') 1x,
25 url('../../common/images/file_types/200/archive.png') 2x);
32 url('../../common/images/file_types/100/archive_white.png') 1x,
33 url('../../common/images/file_types/200/archive_white.png') 2x);
38 url('../../common/images/file_types/100/audio.png') 1x,
39 url('../../common/images/file_types/200/audio.png') 2x);
[all …]
/external/chromium_org/chrome/browser/prerender/
Dprerender_unittest.cc24 #include "url/gurl.h"
42 const GURL& url,
120 PrerenderContents* FindEntry(const GURL& url) { in FindEntry() argument
123 if (PrerenderData* data = FindPrerenderData(url, NULL)) in FindEntry()
128 PrerenderContents* FindAndUseEntry(const GURL& url) { in FindAndUseEntry() argument
129 PrerenderData* prerender_data = FindPrerenderData(url, NULL); in FindAndUseEntry()
152 const GURL& url, in CreateNextPrerenderContents() argument
155 new DummyPrerenderContents(this, prerender_tracker_, url, in CreateNextPrerenderContents()
163 const GURL& url, in CreateNextPrerenderContents() argument
167 new DummyPrerenderContents(this, prerender_tracker_, url, in CreateNextPrerenderContents()
[all …]
/external/chromium_org/chrome/browser/history/
Dtop_sites_cache.h14 #include "url/gurl.h"
21 // a given input URL is a two-stage process:
23 // input URL --(map 1)--> canonical URL --(map 2)--> image.
25 // (map 1) searches for an URL in |canonical_urls_| that "matches" (see below)
26 // input URL. If found, canonical URL assigned to the result. Otherwise the
27 // input URL is considered to already be a canonical URL.
29 // (map 2) simply looks up canonical URL in |images_|.
31 // The rule to "match" URL in |canonical_urls_| always favors exact match.
33 // - In GetGeneralizedCanonicalURL(), we also perform "generalized" URL matches,
34 // i.e., stored URLs in |canonical_urls_| that are prefixes of input URL,
[all …]
/external/chromium_org/content/browser/
Dbrowser_url_handler_impl_unittest.cc8 #include "url/gurl.h"
15 // Test URL rewriter that rewrites all "foo://" URLs to "bar://bar".
16 static bool FooRewriter(GURL* url, BrowserContext* browser_context) { in FooRewriter() argument
17 if (url->scheme() == "foo") { in FooRewriter()
18 *url = GURL("bar://bar"); in FooRewriter()
24 // Test URL rewriter that rewrites all "bar://" URLs to "foo://foo".
25 static bool BarRewriter(GURL* url, BrowserContext* browser_context) { in BarRewriter() argument
26 if (url->scheme() == "bar") { in BarRewriter()
27 *url = GURL("foo://foo"); in BarRewriter()
39 GURL url("foo://bar"); in TEST_F() local
[all …]
/external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
DMtSaintHelens.svg242 …<path d="M0,0L576,0L576,504L0,504" /></clipPath></defs><g style="clip-path:url(#masterclip)" ><g i…
267url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,426l…
268url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,20l4…
269url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,15l…
270url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M0,494l…
271url(#cp1);stroke-width:0.650000;stroke-linecap:round;stroke:rgb(34,34,34);" fill="none" d="M0,153h…
272url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M7,419l…
273url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,133l…
274url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M6,185l…
275url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M1,411l…
[all …]

12345678910>>...250