Home | History | Annotate | Download | only in unit

Lines Matching full:hash

50   typedef hash_multiset<char, hash<char>, equal_to<char> > hmset;
79 typedef hash_map<char, crope, hash<char>, equal_to<char> > maptype;
116 typedef hash_multimap<char, int, hash<char>,equal_to<char> > mmap;
170 // Short demonstrator that helps reproducing a bug in the hash-table implementation
208 // look up that key in hash-table and keep all data in the set
214 // (c) we should have seen as many elements as there are in the hash-table
229 cout << " data in hash: ";
234 cerr << h->second << ", "; // print all data for that key in Hash-Table
301 hash_set<int, hash<int>, equal_to<int> > s;
302 pair<hash_set<int, hash<int>, equal_to<int> >::iterator, bool> p = s.insert(42);
314 typedef hash_map<string, size_t, hash<string>, equal_to<string> > hmap;
353 * Here is the test showing why equality operator on hash containers
387 typedef hash_set<int, hash<int>, equal_to<int>, StackAllocator<int> > HashSetInt;
388 HashSetInt hint1(10, hash<int>(), equal_to<int>(), stack1);
395 HashSetInt hint2(10, hash<int>(), equal_to<int>(), stack2);