OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TemplateURLSet
(Results
1 - 8
of
8
) sorted by null
/external/chromium/chrome/browser/search_engines/
search_host_to_urls_map.h
24
typedef std::set<const TemplateURL*>
TemplateURLSet
;
55
// Return the
TemplateURLSet
for the given the |host| or NULL if there are
57
const
TemplateURLSet
* GetURLsForHost(const std::string& host) const;
62
typedef std::map<std::string,
TemplateURLSet
> HostToURLsMap;
search_host_to_urls_map_unittest.cc
12
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
67
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(host_);
71
for (
TemplateURLSet
::const_iterator i = urls->begin();
122
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(host_);
127
for (
TemplateURLSet
::const_iterator i = urls->begin();
143
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost("a" + host_);
search_provider_install_data.cc
26
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
215
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(
221
for (
TemplateURLSet
::const_iterator i = urls->begin();
template_url_model.cc
38
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
[
all
...]
/external/chromium_org/chrome/browser/search_engines/
search_host_to_urls_map.h
20
typedef std::set<TemplateURL*>
TemplateURLSet
;
42
// Return the
TemplateURLSet
for the given the |host| or NULL if there are
44
TemplateURLSet
* GetURLsForHost(const std::string& host);
49
typedef std::map<std::string,
TemplateURLSet
> HostToURLsMap;
search_host_to_urls_map_unittest.cc
12
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
64
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(host_);
68
for (
TemplateURLSet
::const_iterator i(urls->begin()); i != urls->end(); ++i) {
87
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(host_);
92
for (
TemplateURLSet
::const_iterator i(urls->begin()); i != urls->end(); ++i) {
107
const SearchHostToURLsMap::
TemplateURLSet
* urls =
search_provider_install_data.cc
33
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
209
const
TemplateURLSet
* urls = provider_map_->GetURLsForHost(
215
for (
TemplateURLSet
::const_iterator i = urls->begin();
template_url_service.cc
55
typedef SearchHostToURLsMap::
TemplateURLSet
TemplateURLSet
;
[
all
...]
Completed in 42 milliseconds