Home | History | Annotate | Download | only in tests

Lines Matching refs:TValue

121 template <typename TKey, typename TValue>
122 static size_t add(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
123 const TKey& key, const TValue& value) {
124 return h.add(hash_type(key), key_value_pair_t<TKey, TValue>(key, value));
127 template <typename TKey, typename TValue>
128 static ssize_t find(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
133 template <typename TKey, typename TValue>
134 static bool remove(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
157 template <typename TKey, typename TValue>
158 static void dump(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h) {