Home
last modified time | relevance | path

Searched refs:unordered_map (Results 1 – 25 of 203) sorted by relevance

123456789

/external/vulkan-validation-layers/layers/
Dswapchain.h98 unordered_map<VkSurfaceKHR, SwpSurface *> surfaces;
102 unordered_map<const void *, SwpPhysicalDevice *> physicalDevices;
147 unordered_map<VkSwapchainKHR, SwpSwapchain *> swapchains;
178 unordered_map<VkSurfaceKHR, SwpSurface *> supportedSurfaces;
219 unordered_map<VkSwapchainKHR, SwpSwapchain *> swapchains;
222 unordered_map<VkQueue, SwpQueue *> queues;
252 unordered_map<int, SwpImage> images;
283 std::unordered_map<void *, SwpInstance> instanceMap;
284 std::unordered_map<VkSurfaceKHR, SwpSurface> surfaceMap;
285 std::unordered_map<void *, SwpPhysicalDevice> physicalDeviceMap;
[all …]
Dobject_tracker.h86 typedef std::unordered_map<uint64_t, OBJTRACK_NODE *> object_map_type;
111 std::unordered_map<uint64_t, OBJTRACK_NODE *> swapchainImageMap;
113 std::unordered_map<VkQueue, OT_QUEUE_INFO *> queue_info_map;
125 static std::unordered_map<void *, struct instance_extension_enables> instanceExtMap;
126 static std::unordered_map<void *, layer_data *> layer_data_map;
/external/libcxx/test/std/containers/unord/unord.map/unord.map.swap/
Dswap_noexcept.pass.cpp127 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main()
132 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
137 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
143 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main()
147 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
154 …typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_all… in main()
158 …typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_all… in main()
162 …typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_all… in main()
166 …typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_all… in main()
170 …typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_al… in main()
[all …]
Ddb_swap_1.pass.cpp32 std::unordered_map<int, int> c1(a1, a1+sizeof(a1)/sizeof(a1[0])); in main()
33 std::unordered_map<int, int> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); in main()
34 std::unordered_map<int, int>::iterator i1 = c1.begin(); in main()
35 std::unordered_map<int, int>::iterator i2 = c2.begin(); in main()
39 std::unordered_map<int, int>::iterator j = i1; in main()
/external/libmojo/mojo/public/cpp/bindings/
Dmap_traits_stl.h61 struct MapTraits<std::unordered_map<K, V>> {
64 using Iterator = typename std::unordered_map<K, V>::iterator;
65 using ConstIterator = typename std::unordered_map<K, V>::const_iterator;
67 static bool IsNull(const std::unordered_map<K, V>& input) {
72 static void SetToNull(std::unordered_map<K, V>* output) {
77 static size_t GetSize(const std::unordered_map<K, V>& input) {
81 static ConstIterator GetBegin(const std::unordered_map<K, V>& input) {
84 static Iterator GetBegin(std::unordered_map<K, V>& input) {
97 static bool Insert(std::unordered_map<K, V>& input, const K& key, V&& value) {
101 static bool Insert(std::unordered_map<K, V>& input,
[all …]
/external/libcxx/include/
Dunordered_map2 //===-------------------------- unordered_map -----------------------------===//
16 unordered_map synopsis
25 class unordered_map
47 unordered_map()
52 explicit unordered_map(size_type n, const hasher& hf = hasher(),
56 unordered_map(InputIterator f, InputIterator l,
60 explicit unordered_map(const allocator_type&);
61 unordered_map(const unordered_map&);
62 unordered_map(const unordered_map&, const Allocator&);
63 unordered_map(unordered_map&&)
[all …]
/external/protobuf/m4/
Dstl_hash.m42 # unordered_map/hash_map (we prefer the first form), and what
6 # HASH_NAMESPACE to the namespace the class (unordered_map or
16 # First try unordered_map, but not on gcc's before 4.2 -- I've
17 # seen unexplainable unordered_map bugs with -O2 on older gcc's.
19 # error GCC too old for unordered_map
25 for location in unordered_map tr1/unordered_map; do
30 [const ${namespace}::unordered_map<int, int> t;
34 ac_cv_cxx_hash_map_class="unordered_map";])
56 [the location of <unordered_map> or <hash_map>])
/external/libcxx/include/experimental/
Dunordered_map2 //===------------------------- unordered_map ------------------------------===//
14 experimental/unordered_map synopsis
25 using unordered_map =
26 std::unordered_map<Key, T, Hash, Pred,
44 #include <unordered_map>
55 using unordered_map = _VSTD::unordered_map<_Key, _Value, _Hash, _Pred,
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_unordered_map_synop.pass.cpp50 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>; in main()
51 using PmrMap = pmr::unordered_map<K, V>; in main()
55 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>; in main()
56 using PmrMap = pmr::unordered_map<K, V, MH>; in main()
60 using StdMap = std::unordered_map<K, V, MH, MP, pmr::polymorphic_allocator<P>>; in main()
61 using PmrMap = pmr::unordered_map<K, V, MH, MP>; in main()
65 pmr::unordered_map<int, int> m; in main()
/external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
Dinsert_and_emplace_allocator_requirements.pass.cpp27 testMapInsert<TCT::unordered_map<> >(); in main()
28 testMapInsertHint<TCT::unordered_map<> >(); in main()
29 testMapEmplace<TCT::unordered_map<> >(); in main()
30 testMapEmplaceHint<TCT::unordered_map<> >(); in main()
Derase_iter_db2.pass.cpp28 std::unordered_map<int, int> l1(a1, a1+3); in main()
29 std::unordered_map<int, int> l2(a1, a1+3); in main()
30 std::unordered_map<int, int>::const_iterator i = l2.begin(); in main()
Derase_iter_iter_db3.pass.cpp28 std::unordered_map<int, int> l1(a1, a1+3); in main()
29 std::unordered_map<int, int> l2(a1, a1+3); in main()
30 std::unordered_map<int, int>::iterator i = l1.erase(l2.cbegin(), next(l2.cbegin())); in main()
Derase_iter_iter_db1.pass.cpp28 std::unordered_map<int, int> l1(a1, a1+3); in main()
29 std::unordered_map<int, int> l2(a1, a1+3); in main()
30 std::unordered_map<int, int>::iterator i = l1.erase(l2.cbegin(), next(l1.cbegin())); in main()
Derase_iter_iter_db2.pass.cpp28 std::unordered_map<int, int> l1(a1, a1+3); in main()
29 std::unordered_map<int, int> l2(a1, a1+3); in main()
30 std::unordered_map<int, int>::iterator i = l1.erase(l1.cbegin(), next(l2.cbegin())); in main()
/external/libcxx/test/std/containers/unord/unord.map/
Dmax_load_factor.pass.cpp34 typedef std::unordered_map<int, std::string> C; in main()
39 typedef std::unordered_map<int, std::string> C; in main()
47 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
53 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
63 typedef std::unordered_map<int, std::string> C; in main()
Dbucket_count.pass.cpp28 typedef std::unordered_map<int, std::string> C; in main()
33 typedef std::unordered_map<int, std::string> C; in main()
51 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
57 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
Deq.pass.cpp31 typedef std::unordered_map<int, std::string> C; in main()
50 typedef std::unordered_map<int, std::string> C; in main()
69 typedef std::unordered_map<int, std::string> C; in main()
96 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
116 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
136 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
Dload_factor.pass.cpp30 typedef std::unordered_map<int, std::string> C; in main()
47 typedef std::unordered_map<int, std::string> C; in main()
53 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
71 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, in main()
/external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
Dmove_assign_noexcept.pass.cpp51 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main()
55 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
61 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
67 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main()
71 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
Ddtor_noexcept.pass.cpp45 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main()
49 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
54 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
60 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main()
64 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
Ddefault_noexcept.pass.cpp53 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main()
57 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
63 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
68 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main()
72 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
Dmove_noexcept.pass.cpp49 typedef std::unordered_map<MoveOnly, MoveOnly> C; in main()
53 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
58 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
64 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; in main()
68 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, in main()
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.h50 using std::unordered_map;
195 unordered_map<wstring, DWORD>::iterator iter = unique_files_.find(file); in StoreDuplicateFileID()
207 unordered_map<DWORD, DWORD>::iterator iter = file_ids_.find(id); in GetRealFileID()
243 unordered_map<DWORD, DWORD> file_ids_;
245 unordered_map<wstring, DWORD> unique_files_;
/external/libmojo/mojo/public/cpp/bindings/lib/
Dclone_equals_util.h69 struct CloneTraits<std::unordered_map<K, V>, false> {
70 static std::unordered_map<K, V> Clone(const std::unordered_map<K, V>& input) {
71 std::unordered_map<K, V> result;
139 struct EqualsTraits<std::unordered_map<K, V>, false> {
140 static bool Equals(const std::unordered_map<K, V>& a,
141 const std::unordered_map<K, V>& b) {
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.h285 std::unordered_map<String, Intrinsic> fIntrinsicMap;
286 std::unordered_map<const FunctionDeclaration*, SpvId> fFunctionMap;
287 std::unordered_map<const Variable*, SpvId> fVariableMap;
288 std::unordered_map<const Variable*, int32_t> fInterfaceBlockMap;
289 std::unordered_map<String, SpvId> fImageTypeMap;
290 std::unordered_map<String, SpvId> fTypeMap;
302 std::unordered_map<int64_t, SpvId> fIntConstants;
303 std::unordered_map<uint64_t, SpvId> fUIntConstants;
304 std::unordered_map<float, SpvId> fFloatConstants;
305 std::unordered_map<double, SpvId> fDoubleConstants;

123456789