Searched refs:Hash (Results 1 - 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
H A Dswap_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
149 typedef test_hash<std::hash<int> > Hash; typedef
211 typedef test_hash<std::hash<int> > Hash; typedef
240 typedef test_hash<std::hash<int> > Hash; typedef
288 typedef test_hash<std::hash<int> > Hash; typedef
330 typedef test_hash<std::hash<int> > Hash; typedef
392 typedef test_hash<std::hash<int> > Hash; typedef
421 typedef test_hash<std::hash<int> > Hash; typedef
469 typedef test_hash<std::hash<int> > Hash; typedef
511 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
H A Dswap_non_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
149 typedef test_hash<std::hash<int> > Hash; typedef
211 typedef test_hash<std::hash<int> > Hash; typedef
240 typedef test_hash<std::hash<int> > Hash; typedef
288 typedef test_hash<std::hash<int> > Hash; typedef
330 typedef test_hash<std::hash<int> > Hash; typedef
392 typedef test_hash<std::hash<int> > Hash; typedef
421 typedef test_hash<std::hash<int> > Hash; typedef
469 typedef test_hash<std::hash<int> > Hash; typedef
511 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
H A Dswap_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
31 typedef test_hash<std::hash<int> > Hash; typedef
34 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1));
37 C c2(0, Hash(2), Compare(2), Alloc(2));
43 assert(c1.hash_function() == Hash(2));
52 assert(c2.hash_function() == Hash(1));
60 typedef test_hash<std::hash<int> > Hash; typedef
63 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
76 C c1(0, Hash(
108 typedef test_hash<std::hash<int> > Hash; typedef
152 typedef test_hash<std::hash<int> > Hash; typedef
216 typedef test_hash<std::hash<int> > Hash; typedef
245 typedef test_hash<std::hash<int> > Hash; typedef
293 typedef test_hash<std::hash<int> > Hash; typedef
337 typedef test_hash<std::hash<int> > Hash; typedef
401 typedef test_hash<std::hash<int> > Hash; typedef
430 typedef test_hash<std::hash<int> > Hash; typedef
478 typedef test_hash<std::hash<int> > Hash; typedef
522 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_non_member.pass.cpp12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
30 typedef test_hash<std::hash<int> > Hash; typedef
33 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1));
36 C c2(0, Hash(2), Compare(2), Alloc(2));
42 assert(c1.hash_function() == Hash(2));
51 assert(c2.hash_function() == Hash(1));
59 typedef test_hash<std::hash<int> > Hash; typedef
62 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
75 C c1(0, Hash(
107 typedef test_hash<std::hash<int> > Hash; typedef
151 typedef test_hash<std::hash<int> > Hash; typedef
215 typedef test_hash<std::hash<int> > Hash; typedef
244 typedef test_hash<std::hash<int> > Hash; typedef
292 typedef test_hash<std::hash<int> > Hash; typedef
336 typedef test_hash<std::hash<int> > Hash; typedef
400 typedef test_hash<std::hash<int> > Hash; typedef
429 typedef test_hash<std::hash<int> > Hash; typedef
477 typedef test_hash<std::hash<int> > Hash; typedef
521 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
H A Dswap_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_non_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
H A Dswap_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.swap/
H A Dswap_non_member.pass.cpp12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
29 typedef test_hash<std::hash<int> > Hash; typedef
32 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
34 C c1(0, Hash(1), Compare(1), Alloc(1));
35 C c2(0, Hash(2), Compare(2), Alloc(2));
41 assert(c1.hash_function() == Hash(2));
50 assert(c2.hash_function() == Hash(1));
58 typedef test_hash<std::hash<int> > Hash; typedef
61 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
74 C c1(0, Hash(
106 typedef test_hash<std::hash<int> > Hash; typedef
148 typedef test_hash<std::hash<int> > Hash; typedef
210 typedef test_hash<std::hash<int> > Hash; typedef
239 typedef test_hash<std::hash<int> > Hash; typedef
287 typedef test_hash<std::hash<int> > Hash; typedef
329 typedef test_hash<std::hash<int> > Hash; typedef
391 typedef test_hash<std::hash<int> > Hash; typedef
420 typedef test_hash<std::hash<int> > Hash; typedef
468 typedef test_hash<std::hash<int> > Hash; typedef
510 typedef test_hash<std::hash<int> > Hash; typedef
[all...]

Completed in 1225 milliseconds