HomeSort by relevance Sort by last modified time
    Searched refs:template_urls (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/components/search_engines/
util.cc 51 TemplateURLService::TemplateURLVector* template_urls,
54 DCHECK(template_urls);
65 // Separate |template_urls| into prepopulated and non-prepopulated groups.
70 template_urls->begin()); i != template_urls->end(); ++i) {
138 template_urls->swap(checked_urls);
144 const TemplateURLService::TemplateURLVector& template_urls,
147 template_urls.begin()); i != template_urls.end(); ++i) {
156 const TemplateURLService::TemplateURLVector& template_urls,
    [all...]
util.h 31 // Returns matching URL from |template_urls| or NULL.
33 const TemplateURLService::TemplateURLVector& template_urls,
82 // * a set of template_urls (search providers). The caller owns the
83 // TemplateURL* returned in template_urls.
96 TemplateURLService::TemplateURLVector* template_urls,
103 // engines in |template_urls| instead of getting them via processing a web data
112 TemplateURLService::TemplateURLVector* template_urls,
123 // Removes (and deletes) TemplateURLs from |template_urls| and |service| if they
132 TemplateURLService::TemplateURLVector* template_urls,
search_host_to_urls_map.cc 18 const TemplateURLService::TemplateURLVector& template_urls,
22 Add(template_urls, search_terms_data);
76 const TemplateURLService::TemplateURLVector& template_urls,
79 template_urls.begin()); i != template_urls.end(); ++i)
search_host_to_urls_map.h 26 void Init(const TemplateURLService::TemplateURLVector& template_urls,
51 void Add(const TemplateURLService::TemplateURLVector& template_urls,
search_host_to_urls_map_unittest.cc 37 std::vector<TemplateURL*> template_urls; local
38 template_urls.push_back(t_urls_[0].get());
39 template_urls.push_back(t_urls_[1].get());
42 provider_map_->Init(template_urls, SearchTermsData());
template_url_service.h 546 // Updates |template_urls| so that the only "created by policy" entry is
550 TemplateURLVector* template_urls,
612 void PatchMissingSyncGUIDs(TemplateURLVector* template_urls);
616 // Adds |template_urls| to |template_urls_|.
618 // This transfers ownership of the elements in |template_urls| to |this|, and
621 // |template_urls| on exit.
622 void AddTemplateURLs(TemplateURLVector* template_urls);
    [all...]
template_url_service.cc 130 const TemplateURLService::TemplateURLVector& template_urls) {
133 template_urls.begin(); it != template_urls.end(); ++it) {
841 TemplateURLVector template_urls; local
    [all...]
  /external/chromium_org/chrome/browser/importer/
profile_writer.h 82 // Adds the TemplateURLs in |template_urls| to the local store. The local
84 // |template_urls| may conflict (same keyword or same host name in the URL)
86 // ones take precedence and the duplicates in |template_urls| are deleted.
90 virtual void AddKeywords(ScopedVector<TemplateURL> template_urls,
profile_writer.cc 280 TemplateURLService::TemplateURLVector template_urls = local
282 for (size_t i = 0; i < template_urls.size(); ++i) {
284 template_urls[i], model->search_terms_data(), false);
288 (template_urls[i]->show_in_default_list() &&
294 (*host_path_map)[host_path] = template_urls[i];
301 void ProfileWriter::AddKeywords(ScopedVector<TemplateURL> template_urls,
309 for (ScopedVector<TemplateURL>::iterator i = template_urls.begin();
310 i != template_urls.end(); ++i) {
firefox_importer_browsertest.cc 202 virtual void AddKeywords(ScopedVector<TemplateURL> template_urls,
204 for (size_t i = 0; i < template_urls.size(); ++i) {
208 const base::string16& imported_keyword = template_urls[i]->keyword();
215 EXPECT_EQ(kFirefoxKeywords[j].url, template_urls[i]->url());
  /external/chromium_org/chrome/browser/search_engines/
search_provider_install_data.h 69 void OnTemplateURLsLoaded(ScopedVector<TemplateURL> template_urls,
template_url_service_android.cc 52 std::vector<TemplateURL*> template_urls = local
55 DCHECK_LT(selected_index_size_t, template_urls.size()) <<
58 TemplateURL* template_url = template_urls[selected_index_size_t];
66 std::vector<TemplateURL*> template_urls = local
70 for (size_t i = 0; i < template_urls.size(); ++i) {
71 if (default_search_provider == template_urls[i])
search_provider_install_data.cc 262 ScopedVector<TemplateURL> template_urls,
266 template_urls_ = template_urls.Pass();

Completed in 979 milliseconds