/external/chromium_org/content/common/android/ |
D | hash_set.cc | 14 const base::android::JavaRef<jobject>& hash_set, in JNI_Java_HashSet_add() argument 16 JNI_HashSet::Java_HashSet_add(env, hash_set.obj(), object.obj()); in JNI_Java_HashSet_add() 20 const base::android::JavaRef<jobject>& hash_set, in JNI_Java_HashSet_remove() argument 22 JNI_HashSet::Java_HashSet_remove(env, hash_set.obj(), object.obj()); in JNI_Java_HashSet_remove() 26 const base::android::JavaRef<jobject>& hash_set) { in JNI_Java_HashSet_clear() argument 27 JNI_HashSet::Java_HashSet_clear(env, hash_set.obj()); in JNI_Java_HashSet_clear()
|
D | hash_set.h | 14 const base::android::JavaRef<jobject>& hash_set, 18 const base::android::JavaRef<jobject>& hash_set, 22 const base::android::JavaRef<jobject>& hash_set);
|
/external/libcxx/include/ext/ |
D | hash_set | 2 //===------------------------- hash_set ------------------------------------===// 16 hash_set synopsis 23 class hash_set 42 explicit hash_set(size_type n = 193, const hasher& hf = hasher(), 46 hash_set(InputIterator f, InputIterator l, 50 hash_set(const hash_set&); 51 ~hash_set(); 52 hash_set& operator=(const hash_set&); 74 void swap(hash_set&); 94 void swap(hash_set<Value, Hash, Pred, Alloc>& x, [all …]
|
/external/stlport/stlport/stl/ |
D | _hash_set.h | 45 class hash_set in _STLP_CREATE_HASH_ITERATOR_TRAITS() 47 : public __stlport_class<hash_set<_Value, _HashFcn, _EqualKey, _Alloc> > in _STLP_CREATE_HASH_ITERATOR_TRAITS() 50 typedef hash_set<_Value, _HashFcn, _EqualKey, _Alloc> _Self; in _STLP_CREATE_HASH_ITERATOR_TRAITS() 83 hash_set() in _STLP_CREATE_HASH_ITERATOR_TRAITS() 85 explicit hash_set(size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 87 hash_set(size_type __n, const hasher& __hf) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 101 hash_set(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() [all …]
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
D | scorer.h | 48 const base::hash_set<std::string>& page_terms() const; 52 const base::hash_set<uint32>& page_words() const; 83 base::hash_set<std::string> page_terms_; 84 base::hash_set<uint32> page_words_;
|
D | phishing_term_feature_extractor.h | 58 const base::hash_set<std::string>* page_term_hashes, 59 const base::hash_set<uint32>* page_word_hashes, 127 const base::hash_set<std::string>* page_term_hashes_; 134 const base::hash_set<uint32>* page_word_hashes_;
|
D | phishing_term_feature_extractor_unittest.cc | 37 base::hash_set<std::string> terms; in SetUp() 51 for (base::hash_set<std::string>::iterator it = terms.begin(); in SetUp() 56 base::hash_set<std::string> words; in SetUp() 69 for (base::hash_set<std::string>::iterator it = words.begin(); in SetUp() 134 base::hash_set<std::string> term_hashes_; 135 base::hash_set<uint32> word_hashes_;
|
D | scorer.cc | 90 const base::hash_set<std::string>& Scorer::page_terms() const { in page_terms() 94 const base::hash_set<uint32>& Scorer::page_words() const { in page_words()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
D | hash.h | 100 class hash_set : public std::set<Key, HashFcn> { 102 hash_set(int = 0) {} 137 class hash_set : public HASH_NAMESPACE::hash_set< 140 hash_set(int = 0) {} 181 class hash_set : public HASH_NAMESPACE::HASH_SET_CLASS< 184 hash_set(int = 0) {}
|
/external/chromium_org/third_party/protobuf/ |
D | config.h | 59 #define HASH_SET_CLASS hash_set 64 #define HASH_SET_H <hash_set> 68 #define HASH_SET_H <ext/hash_set>
|
/external/protobuf/m4/ |
D | stl_hash.m4 | 44 AC_DEFINE(HAVE_HASH_SET, 1, [define if the compiler has hash_set]) 48 [the location of <hash_set>]) 50 [the name of <hash_set>]) 52 [the name of <hash_set>]) 54 [the namespace of hash_map/hash_set])
|
/external/chromium_org/chrome/browser/safe_browsing/ |
D | safe_browsing_store_file.h | 226 base::hash_set<int32>().swap(add_del_cache_); in ClearUpdateBuffers() 227 base::hash_set<int32>().swap(sub_del_cache_); in ClearUpdateBuffers() 259 base::hash_set<int32> add_del_cache_; 260 base::hash_set<int32> sub_del_cache_;
|
D | safe_browsing_store_unittest.cc | 41 const base::hash_set<int32>& add_chunks_deleted, in ProcessHelper() 42 const base::hash_set<int32>& sub_chunks_deleted) { in ProcessHelper() 164 const base::hash_set<int32> no_deletions; in TEST() 210 const base::hash_set<int32> no_deletions; in TEST() 265 const base::hash_set<int32> no_deletions; in TEST() 266 base::hash_set<int32> sub_deletions; in TEST() 283 base::hash_set<int32> add_deletions; in TEST()
|
D | safe_browsing_store.cc | 76 void RemoveDeleted(ItemsT* items, const base::hash_set<int32>& del_set) { in RemoveDeleted() 97 const base::hash_set<int32>& add_chunks_deleted, in SBProcessSubs() 98 const base::hash_set<int32>& sub_chunks_deleted) { in SBProcessSubs()
|
/external/chromium_org/third_party/cld/base/ |
D | stl_decl_msvc.h | 79 class hash_set; variable 94 using msvchash::hash_set; 102 #define hash_set set macro
|
/external/chromium_org/ui/views/ |
D | cull_set.h | 30 CullSet(scoped_ptr<base::hash_set<intptr_t> > cull_set); 40 scoped_ptr<base::hash_set<intptr_t> > cull_set_;
|
/external/protobuf/src/google/protobuf/stubs/ |
D | hash.h | 98 class hash_set : public std::set<Key, HashFcn> { 131 class hash_set : public HASH_NAMESPACE::hash_set< 171 class hash_set : public HASH_NAMESPACE::HASH_SET_CLASS<
|
/external/chromium_org/extensions/browser/api/ |
D | api_resource_manager.h | 155 base::hash_set<int>* GetResourceIds(const std::string& extension_id) { in GetResourceIds() 220 typedef std::map<std::string, base::hash_set<int> > ExtensionToResourceMap; 236 std::make_pair(extension_id, base::hash_set<int>())).first; in Add() 275 base::hash_set<int>* GetResourceIds(const std::string& extension_id) { in GetResourceIds() 326 base::hash_set<int>* GetOwnedResourceIds(const std::string& extension_id) { in GetOwnedResourceIds() 356 base::hash_set<int>& resource_ids = it->second; in CleanupResourcesFromExtension() 357 for (base::hash_set<int>::iterator it = resource_ids.begin(); in CleanupResourcesFromExtension()
|
/external/protobuf/ |
D | config.h.in | 3 /* the name of <hash_set> */ 9 /* the namespace of hash_map/hash_set */ 12 /* the name of <hash_set> */ 15 /* the location of <hash_set> */ 30 /* define if the compiler has hash_set */
|
/external/chromium_org/chrome/browser/browsing_data/ |
D | canonical_cookie_hash.h | 58 typedef base::hash_set<net::CanonicalCookie, CanonicalCookieTraits> 78 typedef base::hash_set<net::CanonicalCookie,
|
/external/chromium_org/chrome/browser/extensions/api/preference/ |
D | chrome_direct_setting_api.cc | 39 for (base::hash_set<std::string>::iterator iter = whitelist_.begin(); in RegisterEventListeners() 53 for (base::hash_set<std::string>::iterator iter = whitelist_.begin(); in RegisterPropertyListeners() 65 base::hash_set<std::string> whitelist_;
|
/external/chromium_org/net/base/ |
D | address_tracker_linux.h | 62 base::hash_set<int> GetOnlineLinks() const; 137 base::hash_set<int> online_links_;
|
/external/stlport/test/unit/ |
D | hash_test.cpp | 301 hash_set<int, hash<int>, equal_to<int> > s; in hset2() 302 pair<hash_set<int, hash<int>, equal_to<int> >::iterator, bool> p = s.insert(42); in hset2() 387 typedef hash_set<int, hash<int>, equal_to<int>, StackAllocator<int> > HashSetInt; in allocator_with_state() 423 hash_set<IncompleteClass> hsinstances; 424 typedef hash_set<IncompleteClass>::iterator hsit;
|
/external/chromium_org/content/browser/ |
D | storage_partition_impl_map_unittest.cc | 69 scoped_ptr<base::hash_set<base::FilePath> > active_paths( in TEST() 70 new base::hash_set<base::FilePath>); in TEST()
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_helpers.cc | 73 hash_set<string> MakeKeywordsMap() { in MakeKeywordsMap() 74 hash_set<string> result; in MakeKeywordsMap() 81 hash_set<string> kKeywords = MakeKeywordsMap();
|