Searched refs:hashMap (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Plugins/
H A DPlugInAutoStartProvider.cpp87 ImmutableDictionary::MapType hashMap; local
92 hashMap.set(String::number(valueIt->key), WebDouble::create(valueIt->value));
95 if (hashMap.size())
96 map.set(it->key, ImmutableDictionary::adopt(hashMap));
106 HashMap<unsigned, double> hashMap; local
124 hashMap.set(hash, expirationTime);
131 m_context->sendToAllProcesses(Messages::WebProcess::ResetPlugInAutoStartOriginHashes(hashMap));
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DArgumentCoders.h163 static void encode(ArgumentEncoder& encoder, const HashMapType& hashMap) argument
165 encoder << static_cast<uint64_t>(hashMap.size());
166 for (typename HashMapType::const_iterator it = hashMap.begin(), end = hashMap.end(); it != end; ++it)
170 static bool decode(ArgumentDecoder& decoder, HashMapType& hashMap) argument
192 hashMap.swap(tempHashMap);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DCOMPropertyBag.h71 COMPropertyBag(const HashMapType& hashMap) argument
73 , m_hashMap(hashMap)
85 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap) argument
87 COMPropertyBag* instance = new COMPropertyBag(hashMap);
93 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap) argument
96 instance->m_hashMap.swap(hashMap);

Completed in 140 milliseconds