HomeSort by relevance Sort by last modified time
    Searched refs:HashMapType (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit/win/
COMPropertyBag.h 42 typedef HashMap<KeyType, ValueType, HashType> HashMapType;
44 static COMPropertyBag* createInstance(const HashMapType&);
45 static COMPropertyBag* adopt(HashMapType&);
69 COMPropertyBag(const HashMapType& hashMap)
78 HashMapType m_hashMap;
83 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap)
91 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap)
141 HashMapType::const_iterator it = m_hashMap.find(String(pszPropName));
142 HashMapType::const_iterator end = m_hashMap.end();
207 typedef HashMapType::const_iterator Iterator
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentCoders.h 162 typedef HashMap<KeyArg, MappedArg, HashArg, KeyTraitsArg, MappedTraitsArg> HashMapType;
164 static void encode(ArgumentEncoder* encoder, const HashMapType& hashMap)
167 for (typename HashMapType::const_iterator it = hashMap.begin(), end = hashMap.end(); it != end; ++it)
171 static bool decode(ArgumentDecoder* decoder, HashMapType& hashMap)
177 HashMapType tempHashMap;

Completed in 2575 milliseconds