/external/libcxx/benchmarks/ |
D | unordered_set_operations.bench.cpp | 153 std::unordered_set<uint32_t>{}, 158 std::unordered_set<uint32_t>{}, 164 std::unordered_set<uint32_t>{}, 169 std::unordered_set<uint32_t, UInt32Hash>{}, 175 std::unordered_set<std::string>{}, 180 std::unordered_set<std::string>{}, 190 std::unordered_set<uint64_t>{}, 195 std::unordered_set<uint64_t, UInt64Hash>{}, 201 std::unordered_set<uint64_t>{}, 206 std::unordered_set<uint64_t, UInt64Hash>{}, [all …]
|
/external/libcxx/include/ |
D | unordered_set | 2 //===-------------------------- unordered_set -----------------------------===// 16 unordered_set synopsis 25 class unordered_set 46 unordered_set() 51 explicit unordered_set(size_type n, const hasher& hf = hasher(), 55 unordered_set(InputIterator f, InputIterator l, 59 explicit unordered_set(const allocator_type&); 60 unordered_set(const unordered_set&); 61 unordered_set(const unordered_set&, const Allocator&); 62 unordered_set(unordered_set&&) [all …]
|
/external/libcxx/test/std/containers/unord/unord.set/unord.set.swap/ |
D | swap_noexcept.pass.cpp | 125 typedef std::unordered_set<MoveOnly> C; in main() 130 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 135 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 141 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() 145 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 152 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveOn… in main() 156 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MoveOn… in main() 160 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MoveOn… in main() 164 …typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MoveOn… in main() 168 …typedef std::unordered_set<MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MoveO… in main() [all …]
|
D | db_swap_1.pass.cpp | 31 std::unordered_set<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0])); in main() 32 std::unordered_set<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); in main() 33 std::unordered_set<int>::iterator i1 = c1.begin(); in main() 34 std::unordered_set<int>::iterator i2 = c2.begin(); in main() 38 std::unordered_set<int>::iterator j = i1; in main()
|
/external/libcxx/include/experimental/ |
D | unordered_set | 2 //===------------------------- unordered_set ------------------------------===// 14 experimental/unordered_set synopsis 23 using unordered_set = std::unordered_set<T, Hash, Pred, 38 #include <unordered_set> 49 using unordered_set = _VSTD::unordered_set<_Value, _Hash, _Pred,
|
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/ |
D | header_unordered_set_synop.pass.cpp | 48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; in main() 49 using PmrSet = pmr::unordered_set<V>; in main() 53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; in main() 54 using PmrSet = pmr::unordered_set<V, MH>; in main() 58 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; in main() 59 using PmrSet = pmr::unordered_set<V, MH, MP>; in main() 63 pmr::unordered_set<int> m; in main()
|
/external/libcxx/test/std/containers/unord/unord.set/ |
D | max_load_factor.pass.cpp | 31 typedef std::unordered_set<int> C; in main() 36 typedef std::unordered_set<int> C; in main() 44 typedef std::unordered_set<int, std::hash<int>, in main() 50 typedef std::unordered_set<int, std::hash<int>, in main() 60 typedef std::unordered_set<int> C; in main()
|
D | eq.pass.cpp | 30 typedef std::unordered_set<int> C; in main() 49 typedef std::unordered_set<int> C; in main() 68 typedef std::unordered_set<int> C; in main() 95 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; in main() 114 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; in main() 133 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; in main()
|
D | bucket_count.pass.cpp | 27 typedef std::unordered_set<int> C; in main() 32 typedef std::unordered_set<int> C; in main() 50 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; in main() 55 typedef std::unordered_set<int, std::hash<int>, std::equal_to<int>, min_allocator<int>> C; in main()
|
D | load_factor.pass.cpp | 28 typedef std::unordered_set<int> C; in main() 45 typedef std::unordered_set<int> C; in main() 51 typedef std::unordered_set<int, std::hash<int>, in main() 69 typedef std::unordered_set<int, std::hash<int>, in main()
|
D | erase_iter_db2.pass.cpp | 27 std::unordered_set<int> l1(a1, a1+3); in main() 28 std::unordered_set<int> l2(a1, a1+3); in main() 29 std::unordered_set<int>::const_iterator i = l2.begin(); in main()
|
D | erase_iter_iter_db3.pass.cpp | 27 std::unordered_set<int> l1(a1, a1+3); in main() 28 std::unordered_set<int> l2(a1, a1+3); in main() 29 std::unordered_set<int>::iterator i = l1.erase(l2.cbegin(), next(l2.cbegin())); in main()
|
D | erase_iter_iter_db2.pass.cpp | 27 std::unordered_set<int> l1(a1, a1+3); in main() 28 std::unordered_set<int> l2(a1, a1+3); in main() 29 std::unordered_set<int>::iterator i = l1.erase(l1.cbegin(), next(l2.cbegin())); in main()
|
D | erase_iter_iter_db1.pass.cpp | 27 std::unordered_set<int> l1(a1, a1+3); in main() 28 std::unordered_set<int> l2(a1, a1+3); in main() 29 std::unordered_set<int>::iterator i = l1.erase(l2.cbegin(), next(l1.cbegin())); in main()
|
D | iterators.pass.cpp | 33 typedef std::unordered_set<int> C; in main() 52 typedef std::unordered_set<int> C; in main() 72 typedef std::unordered_set<int, std::hash<int>, in main() 92 typedef std::unordered_set<int, std::hash<int>, in main() 114 typedef std::unordered_set<int> C; in main()
|
D | insert_hint_rvalue.pass.cpp | 31 typedef std::unordered_set<double> C; in main() 54 typedef std::unordered_set<MoveOnly> C; in main() 78 typedef std::unordered_set<double, std::hash<double>, in main() 102 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 127 typedef std::unordered_set<double> C; in main()
|
/external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/ |
D | move_noexcept.pass.cpp | 48 typedef std::unordered_set<MoveOnly> C; in main() 52 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 57 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 63 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() 67 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
|
D | dtor_noexcept.pass.cpp | 44 typedef std::unordered_set<MoveOnly> C; in main() 48 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 53 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 59 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() 63 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
|
D | default_noexcept.pass.cpp | 52 typedef std::unordered_set<MoveOnly> C; in main() 56 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 62 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 67 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() 71 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
|
D | move_assign_noexcept.pass.cpp | 50 typedef std::unordered_set<MoveOnly> C; in main() 54 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 60 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main() 66 typedef std::unordered_set<MoveOnly, some_hash<MoveOnly>> C; in main() 70 typedef std::unordered_set<MoveOnly, std::hash<MoveOnly>, in main()
|
D | move.pass.cpp | 35 typedef std::unordered_set<int, in main() 60 typedef std::unordered_set<int, in main() 100 typedef std::unordered_set<int, in main() 125 typedef std::unordered_set<int, in main() 166 std::unordered_set<int> s1 = {1, 2, 3}; in main() 167 std::unordered_set<int>::iterator i = s1.begin(); in main() 169 std::unordered_set<int> s2 = std::move(s1); in main()
|
/external/libcxx/test/libcxx/containers/unord/unord.set/ |
D | missing_hash_specialization.fail.cpp | 49 using Set = std::unordered_set<VT>; in main() 59 using Set = std::unordered_set<int, BadHashNoCopy>; in main() 63 using Set = std::unordered_set<int, BadHashNoCall>; in main() 67 using Set = std::unordered_set<int, GoodHashNoDefault>; in main()
|
/external/vulkan-validation-layers/layers/ |
D | core_validation_types.h | 75 std::unordered_set<GLOBAL_CB_NODE *> cb_bindings; 119 … std::unordered_set<cvdescriptorset::DescriptorSet *> sets; // Collection of all sets in this pool 176 std::unordered_set<MEM_BINDING> sparse_bindings; 247 std::unordered_set<MEMORY_RANGE *> aliases; 256 std::unordered_set<VK_OBJECT> obj_bindings; // objects bound to this memory 259 std::unordered_set<uint64_t> bound_images; 260 std::unordered_set<uint64_t> bound_buffers; 581 std::unordered_set<VkFramebuffer> framebuffers; 584 std::unordered_set<VK_OBJECT> object_bindings; 587 std::unordered_set<VkEvent> waitedEvents; [all …]
|
/external/google-breakpad/src/common/ |
D | unordered.h | 47 struct unordered_set : public hash_set<T, H> {}; struct 53 using std::unordered_set; 59 using std::tr1::unordered_set;
|
/external/regex-re2/ |
D | README.android | 19 < #include <unordered_set> // using stlport 21 < #include <tr1/unordered_set> // using gnustl 23 < using std::tr1::unordered_set;
|