Searched refs:hmap (Results 1 - 2 of 2) sorted by relevance

/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java59 private Map<String,NameValue> hmap; field in class:NameValueList
68 this.hmap = new LinkedHashMap<String,NameValue>();
74 this.hmap = new ConcurrentHashMap<String,NameValue>();
76 this.hmap = new LinkedHashMap<String,NameValue>();
94 if (!hmap.isEmpty()) {
95 Iterator<NameValue> iterator = hmap.values().iterator();
124 this.hmap.put(nv.getName().toLowerCase(), nv);
132 hmap.put(name.toLowerCase(), nameValue);
152 if (hmap.size() != other.hmap
[all...]
/external/stlport/test/unit/
H A Dhash_test.cpp151 HMapType hmap; local
155 hmap.insert(HMapType::value_type(1, counter));
157 hmap.insert(HMapType::value_type(12325, 1));
158 hmap.insert(HMapType::value_type(12325, 2));
160 CPPUNIT_ASSERT( hmap.count(12325) == 2 );
163 hmap.insert(HMapType::value_type(23, 0));
165 CPPUNIT_ASSERT( hmap.count(12325) == 2 );
314 typedef hash_map<string, size_t, hash<string>, equal_to<string> > hmap; typedef
315 typedef hmap::value_type val_type;
317 hmap value
[all...]

Completed in 157 milliseconds