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

1 23 4 5 6 7 8 91011

  /external/chromium_org/chrome/browser/search_engines/
search_provider_install_data.cc 242 const TemplateURLSet* urls = provider_map_->GetURLsForHost( local
244 if (!urls)
248 for (TemplateURLSet::const_iterator i = urls->begin();
249 i != urls->end(); ++i) {
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker_unittest.cc 108 void GetAllChangedURLs(fileapi::FileSystemURLSet* urls) {
109 change_tracker()->GetAllChangedURLs(urls);
126 // Test URLs (no parent/child relationships, as we test such cases
144 FileSystemURLSet urls; local
145 file_system_.GetChangedURLsInTracker(&urls);
147 EXPECT_EQ(5U, urls.size());
148 EXPECT_TRUE(ContainsKey(urls, URL(kPath1)));
149 EXPECT_TRUE(ContainsKey(urls, URL(kPath2)));
150 EXPECT_TRUE(ContainsKey(urls, URL(kPath3)));
151 EXPECT_TRUE(ContainsKey(urls, URL(kPath4)))
241 FileSystemURLSet urls; local
310 FileSystemURLSet urls; local
386 FileSystemURLSet urls; local
477 FileSystemURLSet urls; local
571 FileSystemURLSet urls; local
626 FileSystemURLSet urls; local
663 FileSystemURLSet urls; local
    [all...]
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/test/base/
ui_test_utils.h 299 std::vector<GURL>& urls() { return urls_; } function in class:ui_test_utils::HistoryEnumerator
  /external/chromium_org/components/bookmarks/browser/
bookmark_index_unittest.cc 62 void AddBookmarks(const char** titles, const char** urls, size_t count) {
66 TitleAndURL bookmark(titles[i], urls[i]);
371 const char* urls[] = {kAboutBlankURL, kAboutBlankURL}; local
372 AddBookmarks(titles, urls, ARRAYSIZE_UNSAFE(titles));
382 const char* urls[] = {kAboutBlankURL, kAboutBlankURL}; local
383 AddBookmarks(titles, urls, ARRAYSIZE_UNSAFE(titles));
394 const char* urls[] = {kAboutBlankURL, kAboutBlankURL}; local
395 AddBookmarks(titles, urls, ARRAYSIZE_UNSAFE(titles));
  /external/chromium_org/net/proxy/
proxy_script_fetcher_impl_unittest.cc 54 // A non-mock URL request which can access http:// and file:// urls, in the case
354 // These two URLs are the same file, but are http:// vs file://
355 GURL urls[] = { local
362 // Try fetching URLs that are 101 bytes large. We should abort the request
364 for (size_t i = 0; i < arraysize(urls); ++i) {
365 const GURL& url = urls[i];
377 { // Make sure we can still fetch regular URLs.
412 { // Make sure we can still fetch regular URLs.
  /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/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/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkManager.java 29 * Provides methods to manage bookmarks in accordance with JEP-0048. Methods for managing URLs and
32 * It should be noted that some extensions have been made to the JEP. There is an attribute on URLs
155 * Returns an unmodifiable collection of all bookmarked urls.
157 * @return returns an unmodifiable collection of all bookmarked urls.
177 List<BookmarkedURL> urls = bookmarks.getBookmarkedURLS(); local
178 if(urls.contains(bookmark)) {
179 BookmarkedURL oldURL = urls.get(urls.indexOf(bookmark));
  /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()]),
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java 304 URL urls[] = {jarFile.getCanonicalFile().toURI().toURL()}; local
305 mClassLoader = new URLClassLoader(urls);
321 * Loads a class from given URLs.
326 * @param urls
330 Class<?> loadClass(String className, URL[] urls) throws ClassNotFoundException {
331 URLClassLoader cl = new URLClassLoader(urls);
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 84 std::vector<std::string>* urls,
94 urls->push_back(visited.url.spec());
359 std::vector<std::string> urls; local
360 ExtractMostVisitedTitlesAndURLs(visited_list, &titles, &urls, num_sites);
364 int num_tiles = urls.size();
377 ToJavaArrayOfStrings(env, urls).obj());
397 std::vector<std::string> urls; local
403 urls.push_back(suggestion.url());
423 ToJavaArrayOfStrings(env, urls).obj());
  /external/chromium_org/chrome/browser/component_updater/
update_response.cc 185 // Parses the <urls> tag and its children in the <updatecheck>.
186 bool ParseUrlsTag(xmlNode* urls,
190 std::vector<xmlNode*> url = GetChildren(urls, "url");
192 *error = "Missing url tags on urls.";
196 // Get the list of urls for full and optionally, for diff updates.
229 // Get the <urls> tag.
230 std::vector<xmlNode*> urls = GetChildren(updatecheck, "urls"); local
231 if (urls.empty()) {
232 *error = "Missing urls on updatecheck."
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
counting_policy_unittest.cc 804 // and no URLs.
1051 std::vector<GURL> urls; local
    [all...]
fullstream_ui_policy_unittest.cc 705 // Clean all the URLs.
778 // Clean some URLs.
779 std::vector<GURL> urls; local
780 urls.push_back(GURL("http://www.google1.com"));
781 urls.push_back(GURL("http://www.google2.com"));
782 urls.push_back(GURL("http://www.url_not_in_db.com"));
783 policy->RemoveURLs(urls);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/history/
history_api.cc 180 std::vector<std::string>* urls = new std::vector<std::string>(); local
183 urls->push_back(iterator->url().spec());
185 removed.urls.reset(urls);
  /external/chromium_org/chrome/browser/history/
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...]