Searched defs:blacklist_set (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/components/suggestions/
H A Dblacklist_store.cc21 std::set<std::string>* blacklist_set) {
22 blacklist_set->clear();
24 blacklist_set->insert(blacklist_proto.urls(i));
28 void PopulateBlacklistProto(const std::set<std::string>& blacklist_set, argument
31 for (std::set<std::string>::const_iterator it = blacklist_set.begin();
32 it != blacklist_set.end(); ++it) {
59 std::set<std::string> blacklist_set; local
60 PopulateBlacklistSet(blacklist_proto, &blacklist_set);
62 if (!blacklist_set.insert(url.spec()).second) {
67 PopulateBlacklistProto(blacklist_set,
20 PopulateBlacklistSet(const SuggestionsBlacklist& blacklist_proto, std::set<std::string>* blacklist_set) argument
[all...]

Completed in 77 milliseconds