HomeSort by relevance Sort by last modified time
    Searched refs:urls (Results 51 - 75 of 451) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/perf/page_sets/third_party/webrtc/samples/js/base/
adapter.js 20 if (pcConfig.iceServers[i].hasOwnProperty('urls')){
21 pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls'];
22 delete pcConfig.iceServers[i]['urls'];
37 // .urls is not supported in FF yet.
83 createIceServers = function(urls, username, password) {
86 for (i = 0; i < urls.length; i++) {
87 var iceServer = createIceServer(urls[i],
145 // Creates iceServers from the urls for Chrome M34 and above.
146 createIceServers = function(urls, username, password) {
149 // .urls is supported since Chrome M34
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_system_unittest.cc 199 FileSystemURLSet urls; local
200 file_system_.GetChangedURLsInTracker(&urls);
202 EXPECT_EQ(3U, urls.size());
203 EXPECT_TRUE(ContainsKey(urls, URL(kPath0)));
204 EXPECT_TRUE(ContainsKey(urls, URL(kPath1)));
205 EXPECT_TRUE(ContainsKey(urls, URL(kPath2)));
224 urls.clear();
225 file_system_.GetChangedURLsInTracker(&urls);
226 EXPECT_TRUE(urls.empty());
232 urls.clear()
    [all...]
local_file_sync_context_unittest.cc 408 FileSystemURLSet urls; local
409 file_system.GetChangedURLsInTracker(&urls);
410 ASSERT_EQ(1U, urls.size());
411 EXPECT_TRUE(ContainsKey(urls, kURL));
450 FileSystemURLSet urls; local
451 file_system1.GetChangedURLsInTracker(&urls);
452 ASSERT_EQ(1U, urls.size());
453 EXPECT_TRUE(ContainsKey(urls, kURL1));
456 urls.clear();
457 file_system2.GetChangedURLsInTracker(&urls);
630 FileSystemURLSet urls; local
741 FileSystemURLSet urls; local
792 FileSystemURLSet urls; local
948 FileSystemURLSet urls; local
    [all...]
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_browsertest.cc 98 std::vector<BookmarkModel::URLAndTitle> urls; local
99 bookmark_model->GetBookmarks(&urls);
101 ASSERT_EQ(1u, urls.size());
102 ASSERT_EQ(GURL(kPersistBookmarkURL), urls[0].url);
103 ASSERT_EQ(base::ASCIIToUTF16(kPersistBookmarkTitle), urls[0].title);
bookmark_editor.cc 31 for (size_t i = 0; i < details.urls.size(); ++i) {
32 model->AddURL(node, node->child_count(), details.urls[i].second,
33 details.urls[i].first);
79 dialog_title = urls.empty() ?
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
adapter.js 33 if (pcConfig.iceServers[i].hasOwnProperty('urls')){
34 pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls'];
35 delete pcConfig.iceServers[i]['urls'];
50 // .urls is not supported in FF yet.
96 createIceServers = function(urls, username, password) {
99 for (i = 0; i < urls.length; i++) {
100 var iceServer = createIceServer(urls[i],
158 // Creates iceServers from the urls for Chrome M34 and above.
159 createIceServers = function(urls, username, password) {
162 // .urls is supported since Chrome M34
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
launcher_favicon_loader.cc 61 // Map of pending download urls.
63 // Map of processed urls.
76 // This function receives a complete list of faviocn urls for the page.
79 // and pending urls, but only until they are removed from the list.
81 // Create a map of valid favicon urls.
82 std::set<GURL> urls; local
89 urls.insert(url);
98 // Reset bitmap_ if no longer valid (i.e. not in the list of urls).
99 if (urls.find(bitmap_url_) == urls.end())
    [all...]
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service_unittest.cc 125 const std::vector<const char*>& urls);
218 const std::vector<const char*>& urls) {
220 DCHECK(urls.size() >= total_urls);
246 urls[i], "pie", typed, i + 3, false, &visit_vectors->back()));
265 std::vector<const char*> urls; local
266 urls.push_back("http://pie.com/");
268 ASSERT_TRUE(InitiateServerState(1, 0, &url_rows, &visit_vectors, urls));
302 std::vector<const char*> urls; local
303 urls.push_back("http://pie.com/");
305 ASSERT_TRUE(InitiateServerState(1, 0, &url_rows, &visit_vectors, urls));
355 std::vector<const char*> urls; local
379 std::vector<const char*> urls; local
433 std::vector<const char*> urls; local
490 std::vector<const char*> urls; local
532 std::vector<const char*> urls; local
584 std::vector<const char*> urls; local
    [all...]
  /external/chromium_org/components/enhanced_bookmarks/
image_store.h 46 // Populates |urls| with all the urls that have an image in the store.
47 virtual void GetAllPageUrls(std::set<GURL>* urls) = 0;
test_image_store.cc 58 void TestImageStore::GetAllPageUrls(std::set<GURL>* urls) {
60 DCHECK(urls->empty());
63 urls->insert(it->first);
persistent_image_store.h 27 virtual void GetAllPageUrls(std::set<GURL>* urls) OVERRIDE;
  /external/chromium_org/net/tools/quic/benchmark/
run_client.py 26 If --use_wget is present, it will fetch the URLs using wget and ignores
64 """Return the list of URLs from the json_file.
80 urls = [url]
84 urls.append(url_dir + '/' + resource)
85 page_list.append(urls)
88 def DownloadOnePage(self, urls):
89 """Download a page emulated by a list of urls.
92 urls: list of URLs to fetch.
102 cmd_in_list.extend(urls)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/
chromiumbuildbot.py 29 import webkitpy.common.config.urls as config_urls
  /external/chromium_org/chrome/browser/safe_browsing/
malware_details_history.h 8 // This class gets redirect chain for urls from the history service.
36 // Collects urls' redirects chain information from the history service.
39 void StartHistoryCollection(const std::vector<GURL>& urls,
45 // Returns the redirect urls we get from history service
60 void StartGetRedirects(const std::vector<GURL>& urls);
81 // The urls we need to get redirects for
protocol_parser_unittest.cc 293 std::vector<ChunkUrl> urls; local
296 &deletes, &urls));
298 EXPECT_TRUE(urls.empty());
317 urls.clear();
321 &deletes, &urls));
336 std::vector<ChunkUrl> urls; local
339 &deletes, &urls));
344 ASSERT_EQ(4U, urls.size());
346 urls[0].url);
348 urls[1].url)
362 std::vector<ChunkUrl> urls; local
501 std::vector<ChunkUrl> urls; local
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sessions_helper.h 108 bool OpenMultipleTabs(int index, const std::vector<GURL>& urls);
111 // return until each url in |urls| has been found.
112 bool WaitForTabsToLoad(int index, const std::vector<GURL>& urls);
  /external/chromium_org/chrome/browser/ui/webui/options/
startup_pages_handler.cc 80 startup_custom_pages_table_model_->SetURLs(startup_pref.urls);
107 std::vector<GURL> urls = startup_custom_pages_table_model_->GetURLs(); local
111 entry->SetString("url", urls[i].spec());
184 std::vector<GURL> urls = startup_custom_pages_table_model_->GetURLs(); local
185 urls[index] = fixed_url;
186 startup_custom_pages_table_model_->SetURLs(urls);
216 pref.urls = startup_custom_pages_table_model_->GetURLs();
218 if (pref.urls.empty())
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.idl 42 [RaisesException] void importScripts(DOMString... urls);
  /external/chromium_org/tools/real_world_impact/
real_world_impact.py 50 urls = [] variable
113 global urls
142 print "Picking %d sample urls..." % num_sites
148 urls = []
159 urls.append(url)
164 urls = [u for u in f.read().splitlines() if not u in bad_urls]
173 f.writelines(u + '\n' for u in urls)
228 global urls
230 for url in urls:
248 urls = [u for u in urls if u not in failed_urls_set
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStreamingStressTest.java 133 List<String> urls = new ArrayList<String>(); local
136 urls.add(line.trim());
139 if (urls == null) {
143 for (int i = 0; i < urls.size(); i++) {
145 String filename = urls.get(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 118 List<URL> urls = new ArrayList<URL>(); local
132 urls.add(url);
143 if (urls.size() > 0) {
144 return new URLClassLoader(urls.toArray(new URL[urls.size()]),
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 80 void CustomHomePagesTableModel::SetURLs(const std::vector<GURL>& urls) {
81 entries_.resize(urls.size());
82 for (size_t i = 0; i < urls.size(); ++i) {
83 entries_[i].url = urls[i];
197 std::vector<GURL> urls(entries_.size());
199 urls[i] = entries_[i].url;
200 return urls;
251 // The URLs changed before we were called back.
  /external/chromium_org/content/browser/fileapi/
file_system_url_unittest.cc 104 const GURL urls[] = { local
116 for (size_t i = 0; i < arraysize(urls); ++i) {
117 for (size_t j = 0; j < arraysize(urls); ++j) {
119 EXPECT_EQ(urls[i] < urls[j],
120 compare(FileSystemURL::CreateForTest(urls[i]),
121 FileSystemURL::CreateForTest(urls[j])));
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_view_unittest.cc 31 const char* urls[] = { local
43 for (size_t i = 0; i < arraysize(urls); i++) {
45 OmniboxView::StripJavascriptSchemas(ASCIIToUTF16(urls[i])));
  /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

Completed in 944 milliseconds

1 23 4 5 6 7 8 91011>>