Searched defs:hashMap (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentCoders.h164 static void encode(ArgumentEncoder* encoder, const HashMapType& hashMap) argument
166 encoder->encodeUInt64(hashMap.size());
167 for (typename HashMapType::const_iterator it = hashMap.begin(), end = hashMap.end(); it != end; ++it)
171 static bool decode(ArgumentDecoder* decoder, HashMapType& hashMap) argument
193 hashMap.swap(tempHashMap);
/external/webkit/Source/WebKit/win/
H A DCOMPropertyBag.h69 COMPropertyBag(const HashMapType& hashMap) argument
71 , m_hashMap(hashMap)
83 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap) argument
85 COMPropertyBag* instance = new COMPropertyBag(hashMap);
91 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap) argument
94 instance->m_hashMap.swap(hashMap);
/external/jhead/
H A Dmain.c58 static void addExifAttibute(JNIEnv *env, jmethodID putMethod, jobject hashMap, char* key, char* value) { argument
62 jobject jobject_of_entryset = (*env)->CallObjectMethod(env, hashMap, putMethod, jkey, jvalue);
360 // jobject jobject_of_entryset = (*env)->CallObjectMethod(env, hashMap, entrySetMethod);
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTest.java142 private static int sizeOf(HashMap<?, ?> hashMap) throws Exception { argument
145 Object[] table = (Object[]) tableField.get(hashMap);
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp349 jobject hashMap = env->NewObject(mapClass, init, map.size()); local
350 ALOG_ASSERT(hashMap, "Could not create a new HashMap");
362 env->CallObjectMethod(hashMap, put, key, val);
370 return hashMap;
1742 jobject hashMap = env->NewObject(mapClass, init, 1); local
1743 ALOG_ASSERT(hashMap, "Could not create a new HashMap");
1762 env->CallObjectMethod(hashMap, put, key, val);
1769 env->CallVoidMethod(javaFrame.get(), mJavaFrame->mSaveFormData, hashMap);
1770 env->DeleteLocalRef(hashMap);

Completed in 144 milliseconds