Home | History | Annotate | Download | only in wtf

Lines Matching refs:mapped

37         static void translate(ValueType& location, RawKeyType key, const MappedType& mapped)
40 location.second = mapped;
205 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped)
208 return m_impl.template add<KeyType, MappedType, TranslatorType>(key, mapped);
213 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, const MappedType& mapped)
215 return m_impl.template add<RawKeyType, MappedType, RawKeyTranslator>(key, mapped);
220 HashMap<RefPtr<T>, U, V, W, X>::set(const KeyType& key, const MappedType& mapped)
222 pair<iterator, bool> result = inlineAdd(key, mapped);
224 // add call above didn't change anything, so set the mapped value
225 result.first->second = mapped;
232 HashMap<RefPtr<T>, U, V, W, X>::set(RawKeyType key, const MappedType& mapped)
234 pair<iterator, bool> result = inlineAdd(key, mapped);
236 // add call above didn't change anything, so set the mapped value
237 result.first->second = mapped;
244 HashMap<RefPtr<T>, U, V, W, X>::add(const KeyType& key, const MappedType& mapped)
246 return inlineAdd(key, mapped);
251 HashMap<RefPtr<T>, U, V, W, X>::add(RawKeyType key, const MappedType& mapped)
253 return inlineAdd(key, mapped);