Home | History | Annotate | Download | only in wtf

Lines Matching defs:ValueType

36         typedef Value ValueType;
52 iterator find(const ValueType&);
53 const_iterator find(const ValueType&) const;
54 bool contains(const ValueType&) const;
55 unsigned count(const ValueType&) const;
60 std::pair<iterator, bool> add(const ValueType&);
64 bool remove(const ValueType&);
69 void removeAll(const ValueType&);
121 inline typename HashCountedSet<Value, HashFunctions, Traits>::iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value)
127 inline typename HashCountedSet<Value, HashFunctions, Traits>::const_iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value) const
133 inline bool HashCountedSet<Value, HashFunctions, Traits>::contains(const ValueType& value) const
139 inline unsigned HashCountedSet<Value, HashFunctions, Traits>::count(const ValueType& value) const
145 inline std::pair<typename HashCountedSet<Value, HashFunctions, Traits>::iterator, bool> HashCountedSet<Value, HashFunctions, Traits>::add(const ValueType &value)
153 inline bool HashCountedSet<Value, HashFunctions, Traits>::remove(const ValueType& value)
177 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value)