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

Lines Matching refs:HF

99         typedef test_hash<std::hash<T>> HF;
102 typedef std::unordered_multiset<T, HF, Comp, A> C;
120 assert(c.hash_function() == HF());
132 typedef test_hash<std::hash<T>> HF;
135 typedef std::unordered_multiset<T, HF, Comp, A> C;
145 HF hf(43);
147 C c(input_iterator<T*>(arr), input_iterator<T*>(arr + sizeof(arr)/sizeof(arr[0])), 16, hf, a);
154 assert(c.hash_function() == hf);
155 assert(!(c.hash_function() == HF()));