Home
last modified time | relevance | path

Searched refs:equal_func (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/boost/intrusive/
Dunordered_set.hpp77 …> priv_equal_range(MaybeConstThis &c, const KeyType& key, KeyHasher hash_func, KeyEqual equal_func) in priv_equal_range() argument
79 Iterator const it = c.find(key, hash_func, equal_func); in priv_equal_range()
125 , const key_equal &equal_func = key_equal() in unordered_set_impl() argument
127 : table_type(b_traits, hash_func, equal_func, v_traits) in unordered_set_impl()
136 , const key_equal &equal_func = key_equal() in unordered_set_impl() argument
138 : table_type(true, b, e, b_traits, hash_func, equal_func, v_traits) in unordered_set_impl()
238 size_type erase(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func);
256 …size_type erase_and_dispose(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func, Disposer…
270 size_type count(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func) const;
277 iterator find(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func);
[all …]
Dhashtable.hpp1809 , const key_equal &equal_func = key_equal() in hashtable_impl() argument
1811 : internal_type(v_traits, b_traits, hash_func, equal_func) in hashtable_impl()
1842 , const key_equal &equal_func = key_equal() in hashtable_impl() argument
1844 : internal_type(v_traits, b_traits, hash_func, equal_func) in hashtable_impl()
2206 , KeyEqual equal_func in insert_unique_check() argument
2211 …siterator const pos = this->priv_find(key, hash_func, equal_func, bucket_num, commit_data.hash, pr… in insert_unique_check()
2339 …INTRUSIVE_FORCEINLINE size_type erase(const KeyType& key, KeyHasher hash_func, KeyEqual equal_func) in erase() argument
2340 { return this->erase_and_dispose(key, hash_func, equal_func, detail::null_disposer()); } in erase()
2446 ,KeyEqual equal_func, Disposer disposer) in erase_and_dispose() argument
2451 siterator it = this->priv_find(key, hash_func, equal_func, bucket_num, h, prev); in erase_and_dispose()
[all …]
/third_party/glib/gio/
Dgliststore.c518 GEqualFunc equal_func, in g_list_store_find_with_equal_func() argument
526 g_return_val_if_fail (equal_func != NULL, FALSE); in g_list_store_find_with_equal_func()
539 if (equal_func (iter_item, item)) in g_list_store_find_with_equal_func()
Dgliststore.h83 GEqualFunc equal_func,
/third_party/glib/glib/
Dgarray.c2150 GEqualFunc equal_func, in g_ptr_array_find_with_equal_func() argument
2157 if (equal_func == NULL) in g_ptr_array_find_with_equal_func()
2158 equal_func = g_direct_equal; in g_ptr_array_find_with_equal_func()
2162 if (equal_func (g_ptr_array_index (haystack, i), needle)) in g_ptr_array_find_with_equal_func()
Dgarray.h223 GEqualFunc equal_func,