Home | History | Annotate | Download | only in wtf

Lines Matching defs:HashCountedSet

37         typename Allocator = DefaultAllocator > class HashCountedSet {
38 WTF_USE_ALLOCATOR(HashCountedSet, Allocator);
47 HashCountedSet() {}
49 void swap(HashCountedSet& other) { m_impl.swap(other.m_impl); }
90 inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
98 inline bool HashCountedSet<T, U, V, W>::remove(iterator it)
116 inline void HashCountedSet<T, U, V, W>::removeAll(iterator it)
125 inline void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector)
127 typedef typename HashCountedSet<T, U, V, W>::const_iterator iterator;
138 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector)
140 typedef typename HashCountedSet<Value, HashFunctions, Traits, Allocator>::const_iterator iterator;
153 using WTF::HashCountedSet;