Home | History | Annotate | Download | only in common

Lines Matching full:hash

28     UHashtable* hash;
110 hash = &hashObj;
111 uhash_setKeyDeleter(hash, uhash_deleteUnicodeString);
116 UErrorCode& status) : hash(0) {
120 : hash(0)
131 : hash(0)
137 : hash(0)
144 if (hash != NULL) {
145 uhash_close(hash);
150 return uhash_setValueDeleter(hash, fn);
154 return uhash_count(hash);
158 return uhash_put(hash, new UnicodeString(key), value, &status);
162 return uhash_puti(hash, new UnicodeString(key), value, &status);
166 return uhash_get(hash, &key);
170 return uhash_geti(hash, &key);
174 return uhash_remove(hash, &key);
178 return uhash_removei(hash, &key);
182 return uhash_find(hash, &key);
186 return uhash_nextElement(hash, &pos);
190 uhash_removeAll(hash);
194 return uhash_setKeyComparator(hash, keyComp);
198 return uhash_setValueComparator(hash, valueComp);
202 return uhash_equals(hash, that.hash);