Home | History | Annotate | Download | only in unord.map.cnstr

Lines Matching refs:hf

72         typedef test_hash<std::hash<T>> HF;
74 typedef std::unordered_map<T, T, HF, Comp, A> C;
79 assert(c.hash_function() == HF());
91 typedef test_hash<std::hash<T>> HF;
93 typedef std::unordered_map<T, T, HF, Comp, A> C;
96 HF hf(12);
97 C c(2, hf, a);
99 assert(c.hash_function() == hf);
100 assert(!(c.hash_function() == HF()));