HomeSort by relevance Sort by last modified time
    Searched full:urls (Results 1 - 25 of 2141) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.html 4 <title>Recently Typed URLs</title>
12 <h2>Recently Typed URLs:</h2>
  /external/chromium_org/third_party/WebKit/PerformanceTests/Parser/
url-parser.html 5 var urls = PerfTestRunner.loadFile("resources/final-url-en").split("\n");
9 for (var x = 0; x < urls.length; x++) {
10 anchor.href = urls[x];
  /external/chromium_org/components/omnibox/
search_suggestion_parser_unittest.cc 28 std::vector<GURL> urls; local
31 SearchSuggestionParser::GetAnswersImageURLs(AsDictionary("").get(), &urls);
32 EXPECT_TRUE(urls.empty());
36 AsDictionary("{ \"l\" : {} } ").get(), &urls);
37 EXPECT_TRUE(urls.empty());
41 std::vector<GURL> urls; local
47 &urls);
48 ASSERT_EQ(1U, urls.size());
49 EXPECT_EQ("https://ssl.gstatic.com/foo.png", urls[0].spec());
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_typed_urls_sync_test.cc 33 history::URLRows urls = GetTypedUrlsFromClient(0); local
34 ASSERT_EQ(0U, urls.size());
39 urls = GetTypedUrlsFromClient(0);
40 ASSERT_EQ(1U, urls.size());
41 ASSERT_EQ(new_url, urls[0].url());
51 history::URLRows urls = GetTypedUrlsFromClient(0); local
52 ASSERT_EQ(0U, urls.size());
59 urls = GetTypedUrlsFromClient(0);
60 ASSERT_EQ(1U, urls.size());
61 ASSERT_EQ(new_url, urls[0].url())
71 history::URLRows urls = GetTypedUrlsFromClient(0); local
98 history::URLRows urls = GetTypedUrlsFromClient(0); local
    [all...]
multiple_client_typed_urls_sync_test.cc 40 history::URLRows urls = GetTypedUrlsFromClient(0); local
41 ASSERT_EQ(1U, urls.size());
42 ASSERT_EQ(new_url, urls[0].url());
55 history::URLRows urls = GetTypedUrlsFromClient(i); local
56 ASSERT_EQ(0U, urls.size());
62 urls = GetTypedUrlsFromClient(i);
63 ASSERT_EQ(1U, urls.size());
64 ASSERT_EQ(new_url, urls[0].url());
67 // Verify that all clients have all urls.
two_client_typed_urls_sync_test.cc 37 history::URLRows urls = GetTypedUrlsFromClient(0); local
39 if (!CheckURLRowVectorsAreEqual(urls, urls2))
42 for (size_t i = 0; i < urls.size() && i < urls2.size(); i++) {
43 history::VisitVector visit1 = GetVisitsFromClient(0, urls[i].id());
53 history::URLRows urls = GetTypedUrlsFromClient(i); local
54 for (size_t j = 0; j < urls.size(); ++j) {
55 history::VisitVector visits = GetVisitsFromClient(i, urls[j].id());
64 history::URLRows urls = GetTypedUrlsFromClient(index); local
65 if (urls.size() == 0)
68 return urls[0].visit_count()
84 history::URLRows urls = GetTypedUrlsFromClient(0); local
106 history::URLRows urls = GetTypedUrlsFromClient(0); local
138 std::vector<history::URLRow> urls = GetTypedUrlsFromClient(0); local
170 history::URLRows urls = GetTypedUrlsFromClient(0); local
224 history::URLRows urls = GetTypedUrlsFromClient(0); local
250 history::URLRows urls = GetTypedUrlsFromClient(0); local
302 history::URLRows urls = GetTypedUrlsFromClient(0); local
329 history::URLRows urls = GetTypedUrlsFromClient(0); local
357 history::URLRows urls = GetTypedUrlsFromClient(0); local
401 history::URLRows urls = GetTypedUrlsFromClient(1); local
444 history::URLRows urls = GetTypedUrlsFromClient(0); local
    [all...]
multiple_client_preferences_sync_test.cc 32 base::ListValue urls; local
33 urls.Append(new base::StringValue(
35 ChangeListPref(i, prefs::kURLsToRestoreOnStartup, urls);
  /external/chromium_org/chrome/browser/history/
top_sites_database_unittest.cc 108 MostVisitedURLList urls; local
110 db.GetPageThumbnails(&urls, &thumbnails);
111 ASSERT_EQ(3u, urls.size());
113 EXPECT_EQ(kUrl0, urls[0].url); // [0] because of url_rank.
116 thumbnails[urls[0].url].thumbnail->size());
117 EXPECT_TRUE(!memcmp(thumbnails[urls[0].url].thumbnail->front(),
120 ASSERT_TRUE(db.RemoveURL(urls[1]));
121 db.GetPageThumbnails(&urls, &thumbnails);
122 ASSERT_EQ(2u, urls.size());
135 MostVisitedURLList urls; local
223 MostVisitedURLList urls; local
268 MostVisitedURLList urls; local
345 MostVisitedURLList urls; local
366 MostVisitedURLList urls; local
    [all...]
history_browsertest.cc 79 return enumerator.urls();
99 std::vector<GURL> urls(GetHistoryContents());
100 EXPECT_EQ(0U, urls.size());
137 std::vector<GURL> urls(GetHistoryContents());
138 ASSERT_EQ(1U, urls.size());
139 EXPECT_EQ(GetTestUrl().spec(), urls[0].spec());
173 std::vector<GURL> urls(GetHistoryContents());
174 ASSERT_EQ(1U, urls.size());
175 EXPECT_EQ(GetTestUrl().spec(), urls[0].spec());
185 std::vector<GURL> urls(GetHistoryContents())
294 ASSERT_EQ(GetTestUrl(), urls[0]); local
300 ASSERT_EQ(GetTestUrl(), urls[0]); local
330 ASSERT_EQ(GetTestUrl(), urls[0]); local
    [all...]
top_sites_impl_unittest.cc 110 // Queries top sites, including potentially forced URLs if
130 void set_urls(const MostVisitedURLList& urls) { urls_ = urls; }
131 const MostVisitedURLList& urls() const { return urls_; } function in class:history::__anon8738::TopSitesQuerier
260 ASSERT_LE(start_index + prepopulate_urls.size(), querier.urls().size());
263 querier.urls()[start_index + i].url.spec()) << " @ index " <<
362 bool AddPrepopulatedPages(MostVisitedURLList* urls) {
363 return top_sites()->AddPrepopulatedPages(urls, 0u);
396 // Helper function for appending a URL to a vector of "most visited" URLs,
406 // Helper function for appending a URL to a vector of "most visited" URLs,
    [all...]
  /external/chromium_org/components/test/data/component_updater/
updatecheck_diff_reply_1.xml 5 <urls>
7 </urls>
updatecheck_reply_1.xml 5 <urls>
7 </urls>
updatecheck_reply_2.xml 5 <urls>
7 </urls>
updatecheck_diff_reply_2.xml 5 <urls>
8 </urls>
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chrome011010.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
20 """Invoke a browser, send it to a series of URLs, and save its output.
23 urls: list of URLs to scrape
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
chrome01970.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
20 """Invoke a browser, send it to a series of URLs, and save its output.
23 urls: list of URLs to scrape
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/background-simple/
manifest.json 5 "urls": [ "http://SOME_SITE_WITHOUT_PORT_NUMBERS/SOME_PATH/" ],
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/pageserializer/
page_with_data.html 4 unnecessarily create resources for data URLs.
  /external/owasp/sanitizer/tools/findbugs/doc/
plugins.txt 5 a list of URLs to plugins. These URLs can be relative or absolute. If they
  /external/chromium_org/components/search_engines/
search_host_to_urls_map_unittest.cc 61 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_); local
62 ASSERT_TRUE(urls != NULL);
65 for (TemplateURLSet::const_iterator i(urls->begin()); i != urls->end(); ++i) {
84 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host_); local
85 ASSERT_TRUE(urls != NULL);
89 for (TemplateURLSet::const_iterator i(urls->begin()); i != urls->end(); ++i) {
104 const SearchHostToURLsMap::TemplateURLSet* urls = local
106 ASSERT_TRUE(urls == NULL)
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker_unittest.cc 109 void GetAllChangedURLs(storage::FileSystemURLSet* urls) {
110 change_tracker()->GetAllChangedURLs(urls);
130 FileSystemURLSet urls; local
131 file_system_.GetChangedURLsInTracker(&urls);
132 ASSERT_EQ(1u, urls.size());
133 EXPECT_EQ(URL(kPath), *urls.begin());
137 file_system_.GetChangedURLsInTracker(&urls);
138 ASSERT_TRUE(urls.empty());
142 file_system_.GetChangedURLsInTracker(&urls);
143 ASSERT_EQ(1u, urls.size())
174 FileSystemURLSet urls; local
269 FileSystemURLSet urls; local
338 FileSystemURLSet urls; local
414 FileSystemURLSet urls; local
505 FileSystemURLSet urls; local
599 FileSystemURLSet urls; local
654 FileSystemURLSet urls; local
691 FileSystemURLSet urls; local
    [all...]
  /external/chromium_org/mojo/shell/
mojo_url_resolver.h 16 // This class resolves "mojo:" URLs to physical URLs (e.g., "file:" and
17 // "https:" URLs). By default, "mojo:" URLs resolve to a file location, but
24 // If specified, then unknown "mojo:" URLs will be resolved relative to this
  /external/chromium_org/components/precache/core/proto/
precache.proto 27 // The maximum rank of the user's most visited URLs to consider precaching
29 // URLs that are in the user's top 10 most visited URLs will be considered as
30 // starting URLs for resource precaching. This is specified by the server for
37 // List of additional starting URLs that resources will be precached for.
38 // These are URLs that the server predicts that the user will visit, as a
  /external/chromium_org/chrome/browser/prefs/
session_startup_pref.h 32 // Indicates the user wants to restore a specific set of URLs. The URLs
33 // are contained in urls.
34 URLS,
71 // Whether the startup type and URLs are managed via policy.
88 // The URLs to restore. Only used if type == URLS.
89 std::vector<GURL> urls; member in struct:SessionStartupPref
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_utils.h 19 // Creates a set containing the canonical URLs of the currently open tabs.
22 std::set<std::string>* urls);

Completed in 820 milliseconds

1 2 3 4 5 6 7 8 91011>>