Home
last modified time | relevance | path

Searched refs:inlineAdd (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/wtf/
DRefPtrHashMap.h113 pair<iterator, bool> inlineAdd(const KeyType&, const MappedType&);
114 pair<iterator, bool> inlineAdd(RawKeyType, const MappedType&);
205 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) in inlineAdd() function
213 HashMap<RefPtr<T>, U, V, W, X>::inlineAdd(RawKeyType key, const MappedType& mapped) in inlineAdd() function
222 pair<iterator, bool> result = inlineAdd(key, mapped); in set()
234 pair<iterator, bool> result = inlineAdd(key, mapped); in set()
246 return inlineAdd(key, mapped); in add()
253 return inlineAdd(key, mapped); in add()
DHashMap.h87 pair<iterator, bool> inlineAdd(const KeyType&, const MappedType&);
178 HashMap<T, U, V, W, X>::inlineAdd(const KeyType& key, const MappedType& mapped) in inlineAdd() function
188 pair<iterator, bool> result = inlineAdd(key, mapped); in set()
200 return inlineAdd(key, mapped); in add()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-1413940 (KXMLCore::::inlineAdd):
14975 (KXMLCore::::inlineAdd): Shared by set and add to insert using HashMapTranslator
14976 (KXMLCore::::set): Use inlineAdd
14977 (KXMLCore::::add): Use inlineAdd
DChangeLog-2008-08-1017196 (WTF::HashMap::inlineAdd): Use add with RefPtrHashMapRawKeyTranslator.