Lines Matching refs:HashSet

97   template <class T, class EmptyFn, class HashFn, class Pred, class Alloc> friend class HashSet;  variable
171 class HashSet {
179 using iterator = HashSetIterator<T, HashSet>;
180 using const_iterator = HashSetIterator<const T, const HashSet>;
195 HashSet() : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor) {} in HashSet() function
196 explicit HashSet(const allocator_type& alloc) noexcept in HashSet() function
197 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, alloc) {} in HashSet()
199 HashSet(double min_load_factor, double max_load_factor) noexcept in HashSet() function
200 : HashSet(min_load_factor, max_load_factor, allocator_type()) {} in HashSet()
201 HashSet(double min_load_factor, double max_load_factor, const allocator_type& alloc) noexcept in HashSet() function
202 : HashSet(min_load_factor, max_load_factor, HashFn(), Pred(), alloc) {} in HashSet()
204 HashSet(const HashFn& hashfn, in HashSet() function
206 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, hashfn, pred) {} in HashSet()
207 HashSet(const HashFn& hashfn, in HashSet() function
210 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, hashfn, pred, alloc) {} in HashSet()
212 HashSet(double min_load_factor, in HashSet() function
216 : HashSet(min_load_factor, max_load_factor, hashfn, pred, allocator_type()) {} in HashSet()
217 HashSet(double min_load_factor, in HashSet() function
237 HashSet(const HashSet& other) noexcept in HashSet() function
257 HashSet(HashSet&& other) noexcept in HashSet() function
278 HashSet(value_type* buffer, size_t buffer_size) in HashSet() function
279 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, buffer, buffer_size) {} in HashSet()
280 HashSet(value_type* buffer, size_t buffer_size, const allocator_type& alloc) in HashSet() function
281 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, buffer, buffer_size, alloc) {} in HashSet()
282 HashSet(double min_load_factor, double max_load_factor, value_type* buffer, size_t buffer_size) in HashSet() function
283 : HashSet(min_load_factor, max_load_factor, buffer, buffer_size, allocator_type()) {} in HashSet()
284 HashSet(double min_load_factor, in HashSet() function
307 HashSet(const uint8_t* ptr, bool make_copy_of_data, size_t* read_count) noexcept { in HashSet() function
353 ~HashSet() { in ~HashSet()
357 HashSet& operator=(HashSet&& other) noexcept {
358 HashSet(std::move(other)).swap(*this); // NOLINT [runtime/explicit] [5]
362 HashSet& operator=(const HashSet& other) noexcept {
363 HashSet(other).swap(*this); // NOLINT(runtime/explicit) - a case of lint gone mad.
522 void swap(HashSet& other) { in swap()
817 void swap(HashSet<T, EmptyFn, HashFn, Pred, Alloc>& lhs, in swap()
818 HashSet<T, EmptyFn, HashFn, Pred, Alloc>& rhs) { in swap()