Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.nonmember/
H A Dop_compare.pass.cpp43 typedef map_type::value_type value_type; in main()
45 map_type m1, m2; in main()
48 const map_type& cm1 = m1, cm2 = m2; in main()
52 map_type m1, m2; in main()
55 const map_type& cm1 = m1, cm2 = m2; in main()
59 map_type m1, m2; in main()
62 const map_type& cm1 = m1, cm2 = m2; in main()
66 map_type m1, m2; in main()
69 const map_type& cm1 = m1, cm2 = m2; in main()
73 map_type m1, m2; in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.nonmember/
H A Dop_compare.pass.cpp43 typedef map_type::value_type value_type; in main()
45 map_type m1, m2; in main()
48 const map_type& cm1 = m1, cm2 = m2; in main()
52 map_type m1, m2; in main()
55 const map_type& cm1 = m1, cm2 = m2; in main()
59 map_type m1, m2; in main()
62 const map_type& cm1 = m1, cm2 = m2; in main()
66 map_type m1, m2; in main()
69 const map_type& cm1 = m1, cm2 = m2; in main()
73 map_type m1, m2; in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.value_compare/
H A Dinvoke.pass.cpp31 typedef std::multimap<int, std::string> map_type; in main() typedef
33 map_type m; in main()
34 map_type::iterator i1 = m.insert(map_type::value_type(1, "abc")); in main()
35 map_type::iterator i2 = m.insert(map_type::value_type(2, "abc")); in main()
37 const map_type::value_compare vc = m.value_comp(); in main()
38 CallCompMember<map_type> call_comp = m.value_comp(); in main()
H A Dtypes.pass.cpp21 typedef std::multimap<int, std::string> map_type; in main() typedef
22 typedef map_type::value_compare value_compare; in main()
23 typedef map_type::value_type value_type; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.observers/
H A Dvalue_comp.pass.cpp18 typedef std::multimap<int, std::string> map_type; in main() typedef
20 map_type m; in main()
21 map_type::iterator i1 = m.insert(map_type::value_type(1, "abc")); in main()
22 map_type::iterator i2 = m.insert(map_type::value_type(2, "abc")); in main()
24 const map_type& cm = m; in main()
H A Dkey_comp.pass.cpp18 typedef std::multimap<int, std::string> map_type; in main() typedef
20 map_type m; in main()
21 map_type::iterator i1 = m.insert(map_type::value_type(1, "abc")); in main()
22 map_type::iterator i2 = m.insert(map_type::value_type(2, "abc")); in main()
24 const map_type& cm = m; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.value_compare/
H A Dinvoke.pass.cpp31 typedef std::map<int, std::string> map_type; in main() typedef
33 map_type m; in main()
34 std::pair<map_type::iterator, bool> p1 = m.insert(map_type::value_type(1, "abc")); in main()
35 std::pair<map_type::iterator, bool> p2 = m.insert(map_type::value_type(2, "abc")); in main()
37 const map_type::value_compare vc = m.value_comp(); in main()
38 CallCompMember<map_type> call_comp = m.value_comp(); in main()
H A Dtypes.pass.cpp21 typedef std::map<int, std::string> map_type; in main() typedef
22 typedef map_type::value_compare value_compare; in main()
23 typedef map_type::value_type value_type; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.observers/
H A Dvalue_comp.pass.cpp18 typedef std::map<int, std::string> map_type; in main() typedef
20 map_type m; in main()
21 std::pair<map_type::iterator, bool> p1 = m.insert(map_type::value_type(1, "abc")); in main()
22 std::pair<map_type::iterator, bool> p2 = m.insert(map_type::value_type(2, "abc")); in main()
24 const map_type& cm = m; in main()
H A Dkey_comp.pass.cpp18 typedef std::map<int, std::string> map_type; in main() typedef
20 map_type m; in main()
21 std::pair<map_type::iterator, bool> p1 = m.insert(map_type::value_type(1, "abc")); in main()
22 std::pair<map_type::iterator, bool> p2 = m.insert(map_type::value_type(2, "abc")); in main()
24 const map_type& cm = m; in main()
/llvm-project-15.0.7/lldb/test/API/lang/cpp/stl/
H A DTestSTL.py51 map_type = associative_array.GetType()
52 self.DebugSBType(map_type)
53 self.assertTrue(map_type, VALID_TYPE)
54 num_template_args = map_type.GetNumberOfTemplateArguments()
61 t = map_type.GetTemplateArgumentType(i)
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
H A Dmerge.pass.cpp65 typedef std::multimap<Counter<int>, int, throw_comparator> map_type; in main() typedef
66 map_type src({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw)); in main()
67 map_type dst({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw)); in main()
81 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw)))); in main()
82 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw)))); in main()
H A Dextract_iterator.pass.cpp47 using map_type = std::multimap<int, int>; in main() typedef
48 map_type m = {{1,1}, {2,2}, {3,3}, {4,4}, {5,5}, {6,6}}; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.modifiers/
H A Dmerge.pass.cpp65 typedef std::map<Counter<int>, int, throw_comparator> map_type; in main() typedef
66 map_type src({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw)); in main()
67 map_type dst({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw)); in main()
81 assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, throw_comparator(do_throw)))); in main()
82 assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, throw_comparator(do_throw)))); in main()
H A Dextract_iterator.pass.cpp47 using map_type = std::map<int, int>; in main() typedef
48 map_type m = {{1,1}, {2,2}, {3,3}, {4,4}, {5,5}, {6,6}}; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dmerge.pass.cpp65 typedef std::unordered_multimap<Counter<int>, int, throw_hasher<Counter<int>>> map_type; in main() typedef
66 map_type src({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)); in main()
67 map_type dst({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)); in main()
81 …assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)))… in main()
82 …assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)))… in main()
H A Dextract_iterator.pass.cpp47 using map_type = std::unordered_multimap<int, int>; in main() typedef
48 map_type m = {{1,1}, {2,2}, {3,3}, {4,4}, {5,5}, {6,6}}; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dmerge.pass.cpp65 typedef std::unordered_map<Counter<int>, int, throw_hasher<Counter<int>>> map_type; in main() typedef
66 map_type src({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)); in main()
67 map_type dst({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)); in main()
81 …assert(map_equal(src, map_type({{1, 0}, {3, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)))… in main()
82 …assert(map_equal(dst, map_type({{2, 0}, {4, 0}, {5, 0}}, 0, throw_hasher<Counter<int>>(do_throw)))… in main()
H A Dextract_iterator.pass.cpp47 using map_type = std::unordered_map<int, int>; in main() typedef
48 map_type m = {{1,1}, {2,2}, {3,3}, {4,4}, {5,5}, {6,6}}; in main()
/llvm-project-15.0.7/llvm/test/CodeGen/BPF/BTF/
H A Dmap-def-2.ll8 ; typedef struct map_type {
16 %struct.map_type = type { %struct.key_type* }
19 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", …
62 ; CHECK: .ascii "map_type" # string offset=38
79 !8 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "map_type", file: !3, line: 4, siz…
H A Dmap-def.ll9 ; struct map_type {
13 ; struct map_type __attribute__((section(".maps"))) hash_map;
17 %struct.map_type = type { %struct.key_type*, i32* }
20 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", …
84 ; CHECK-NEXT: .ascii "map_type" # string offset=31
105 !6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "map_type", file: !3, line: 5, siz…
/llvm-project-15.0.7/lldb/examples/synthetic/
H A Dgnu_libstdcpp.py563 map_type = self.valobj.GetType()
564 if map_type.IsReferenceType():
566 map_type = map_type.GetDereferencedType()
570 allocator_type = map_type.GetTemplateArgumentType(3)
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_ast_build.c1571 isl_map *map_type = isl_map_copy(map); in options_insert_dim() local
1573 map_type = isl_map_set_tuple_name(map_type, isl_dim_in, name); in options_insert_dim()
1574 map_type = isl_map_set_tuple_name(map_type, isl_dim_out, name); in options_insert_dim()
1575 insertion = isl_union_map_add_map(insertion, map_type); in options_insert_dim()
/llvm-project-15.0.7/polly/lib/External/isl/interface/
H A Dtemplate_cpp.cc928 static Kind map_type{ Domain, Range }; variable
947 { "space", { params, set_type, map_type } },
950 { "map", { map_type } },
952 { "fixed_box", { set_type, map_type } },
1007 { map_anon, map_type },
/llvm-project-15.0.7/clang/docs/tools/
H A Dclang-formatted-files.txt8763 polly/lib/External/isl/include/isl/map_type.h