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

/external/webkit/WebKit/win/
H A DCOMPropertyBag.h67 COMPropertyBag(const HashMapType& hashMap) argument
69 , m_hashMap(hashMap)
81 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap) argument
83 COMPropertyBag* instance = new COMPropertyBag(hashMap);
89 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap) argument
92 instance->m_hashMap.swap(hashMap);
/external/jhead/
H A Dmain.c57 static void addExifAttibute(JNIEnv *env, jmethodID putMethod, jobject hashMap, char* key, char* value) { argument
61 jobject jobject_of_entryset = (*env)->CallObjectMethod(env, hashMap, putMethod, jkey, jvalue);
354 // jobject jobject_of_entryset = (*env)->CallObjectMethod(env, hashMap, entrySetMethod);
/external/webkit/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp299 jobject hashMap = env->NewObject(mapClass, init, map.size()); local
300 LOG_ASSERT(hashMap, "Could not create a new HashMap");
312 env->CallObjectMethod(hashMap, put, key, val);
320 return hashMap;
1525 jobject hashMap = NULL; local
1533 hashMap = env->NewObject(mapClass, init, 1);
1534 LOG_ASSERT(hashMap, "Could not create a new HashMap");
1561 env->CallObjectMethod(hashMap, put, key, val);
1573 return hashMap;

Completed in 39 milliseconds