Home | History | Annotate | Download | only in wtf

Lines Matching refs:mapped

122         static void translate(ValueType& location, const KeyType& key, const MappedType& mapped)
125 location.second = mapped;
237 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped)
240 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
245 HashMap<T, U, V, W, X>::set(const KeyType& key, const MappedType& mapped)
247 pair<iterator, bool> result = inlineAdd(key, mapped);
249 // add call above didn't change anything, so set the mapped value
250 result.first->second = mapped;
266 HashMap<T, U, V, W, X>::add(const KeyType& key, const MappedType& mapped)
268 return inlineAdd(key, mapped);