| /llvm-project/libcxx/test/std/containers/unord/unord.multiset/ |
| H A D | key_eq.pass.cpp | 21 typedef std::unordered_multiset<int> set_type; in main() typedef 22 set_type s; in main() 24 set_type::iterator i1 = s.insert(1); in main() 25 set_type::iterator i2 = s.insert(1); in main() 26 set_type::iterator i3 = s.insert(2); in main() 28 const set_type& cs = s; in main()
|
| H A D | hash_function.pass.cpp | 21 typedef std::unordered_multiset<int> set_type; in main() typedef 22 set_type s; in main() 24 set_type::iterator i1 = s.insert(1); in main() 25 set_type::iterator i2 = s.insert(1); in main() 27 const set_type& cs = s; in main()
|
| H A D | merge.pass.cpp | 65 typedef std::unordered_multiset<Counter<int>, throw_hasher<Counter<int>>> set_type; in main() typedef 66 set_type src({1, 3, 5}, 0, throw_hasher<Counter<int>>(do_throw)); in main() 67 set_type dst({2, 4, 5}, 0, throw_hasher<Counter<int>>(do_throw)); in main() 81 assert(set_equal(src, set_type({1, 3, 5}, 0, throw_hasher<Counter<int>>(do_throw)))); in main() 82 assert(set_equal(dst, set_type({2, 4, 5}, 0, throw_hasher<Counter<int>>(do_throw)))); in main()
|
| H A D | extract_iterator.pass.cpp | 43 using set_type = std::unordered_multiset<int>; in main() typedef 44 set_type m = {1, 2, 3, 4, 5, 6}; in main()
|
| /llvm-project/libcxx/test/std/containers/associative/multiset/multiset.observers/ |
| H A D | comp.pass.cpp | 18 typedef std::multiset<int> set_type; in main() typedef 20 set_type s; in main() 21 set_type::iterator i1 = s.insert(1); in main() 22 set_type::iterator i2 = s.insert(2); in main() 24 const set_type& cs = s; in main()
|
| /llvm-project/libcxx/test/std/containers/unord/unord.set/ |
| H A D | key_eq.pass.cpp | 21 typedef std::unordered_set<int> set_type; in main() typedef 23 set_type s; in main() 25 std::pair<set_type::iterator, bool> p1 = s.insert(1); in main() 26 std::pair<set_type::iterator, bool> p2 = s.insert(2); in main() 28 const set_type& cs = s; in main()
|
| H A D | hash_function.pass.cpp | 21 typedef std::unordered_set<int> set_type; in main() typedef 22 set_type s; in main() 24 std::pair<set_type::iterator, bool> p = s.insert(1); in main() 26 const set_type& cs = s; in main()
|
| H A D | merge.pass.cpp | 65 typedef std::unordered_set<Counter<int>, throw_hasher<Counter<int>>> set_type; in main() typedef 66 set_type src({1, 3, 5}, 0, throw_hasher<Counter<int>>(do_throw)); in main() 67 set_type dst({2, 4, 5}, 0, throw_hasher<Counter<int>>(do_throw)); in main() 81 assert(set_equal(src, set_type({1, 3, 5}, 0, throw_hasher<Counter<int>>(do_throw)))); in main() 82 assert(set_equal(dst, set_type({2, 4, 5}, 0, throw_hasher<Counter<int>>(do_throw)))); in main()
|
| H A D | extract_iterator.pass.cpp | 43 using set_type = std::unordered_set<int>; in main() typedef 44 set_type m = {1, 2, 3, 4, 5, 6}; in main()
|
| /llvm-project/libcxx/test/std/containers/associative/set/set.observers/ |
| H A D | comp.pass.cpp | 18 typedef std::set<int> set_type; in main() typedef 20 set_type s; in main() 21 std::pair<set_type::iterator, bool> p1 = s.insert(1); in main() 22 std::pair<set_type::iterator, bool> p2 = s.insert(2); in main() 24 const set_type& cs = s; in main()
|
| /llvm-project/libcxx/test/std/containers/associative/set/ |
| H A D | merge.pass.cpp | 65 typedef std::set<Counter<int>, throw_comparator> set_type; in main() typedef 66 set_type src({1, 3, 5}, throw_comparator(do_throw)); in main() 67 set_type dst({2, 4, 5}, throw_comparator(do_throw)); in main() 81 assert(set_equal(src, set_type({1, 3, 5}, throw_comparator(do_throw)))); in main() 82 assert(set_equal(dst, set_type({2, 4, 5}, throw_comparator(do_throw)))); in main()
|
| H A D | extract_iterator.pass.cpp | 43 using set_type = std::set<int>; in main() typedef 44 set_type m = {1, 2, 3, 4, 5, 6}; in main()
|
| /llvm-project/libcxx/test/std/containers/associative/multiset/ |
| H A D | merge.pass.cpp | 65 typedef std::multiset<Counter<int>, throw_comparator> set_type; in main() typedef 66 set_type src({1, 3, 5}, throw_comparator(do_throw)); in main() 67 set_type dst({2, 4, 5}, throw_comparator(do_throw)); in main() 81 assert(set_equal(src, set_type({1, 3, 5}, throw_comparator(do_throw)))); in main() 82 assert(set_equal(dst, set_type({2, 4, 5}, throw_comparator(do_throw)))); in main()
|
| H A D | extract_iterator.pass.cpp | 43 using set_type = std::multiset<int>; in main() typedef 44 set_type m = {1, 2, 3, 4, 5, 6}; in main()
|
| /llvm-project/polly/lib/External/isl/ |
| H A D | isl_pw_insert_dims_templ.c | 16 enum isl_dim_type set_type; in FN() local 25 set_type = type == isl_dim_in ? isl_dim_set : type; in FN() 36 domain = isl_set_insert_dims(domain, set_type, first, n); in FN()
|
| H A D | isl_fold.c | 354 enum isl_dim_type set_type; in isl_qpolynomial_fold_set_dim_name() local 362 set_type = domain_type(type); in isl_qpolynomial_fold_set_dim_name() 364 space = isl_space_set_dim_name(space, set_type, pos, s); in isl_qpolynomial_fold_set_dim_name() 387 enum isl_dim_type set_type; in isl_qpolynomial_fold_drop_dims() local 396 set_type = domain_type(type); in isl_qpolynomial_fold_drop_dims() 403 space = isl_space_drop_dims(space, set_type, first, n); in isl_qpolynomial_fold_drop_dims() 426 enum isl_dim_type set_type; in isl_qpolynomial_fold_insert_dims() local 439 set_type = domain_type(type); in isl_qpolynomial_fold_insert_dims() 441 space = isl_space_insert_dims(space, set_type, first, n); in isl_qpolynomial_fold_insert_dims()
|
| H A D | isl_pw_templ.c | 1242 enum isl_dim_type set_type; in FN() local 1249 set_type = type == isl_dim_in ? isl_dim_set : type; in FN() 1257 set_type, first, n); in FN() 1279 enum isl_dim_type set_type; in FN() local 1288 set_type = type == isl_dim_in ? isl_dim_set : type; in FN() 1303 domain = isl_set_drop(domain, set_type, first, n); in FN() 1320 enum isl_dim_type set_type; in FN() local 1329 set_type = type == isl_dim_in ? isl_dim_set : type; in FN() 1339 domain = isl_set_project_out(domain, set_type, first, n); in FN()
|
| /llvm-project/llvm/include/llvm/ADT/ |
| H A D | SetVector.h | 67 using set_type = Set; variable 337 set_type &set_; 340 TestAndEraseFromSet(UnaryPredicate P, set_type &set_) in TestAndEraseFromSet() 363 set_type set_; ///< The set.
|
| /llvm-project/flang/lib/Semantics/ |
| H A D | symbol.cpp | 150 void EntityDetails::set_type(const DeclTypeSpec &type) { in set_type() function in Fortran::semantics::EntityDetails 317 [&](EntityDetails &x) { x.set_type(type); }, in SetType() 318 [&](ObjectEntityDetails &x) { x.set_type(type); }, in SetType() 319 [&](AssocEntityDetails &x) { x.set_type(type); }, in SetType() 320 [&](ProcEntityDetails &x) { x.set_type(type); }, in SetType() 321 [&](TypeParamDetails &x) { x.set_type(type); }, in SetType() 751 TypeParamDetails &TypeParamDetails::set_type(const DeclTypeSpec &type) { 742 void TypeParamDetails::set_type(const DeclTypeSpec &type) { set_type() function in Fortran::semantics::TypeParamDetails
|
| H A D | runtime-type-info.cpp | 212 object.set_type(*spec); in SaveDerivedPointerTarget() 214 object.set_type(scope.MakeDerivedType( in SaveDerivedPointerTarget() 333 object.set_type(*spec); in SaveNumericPointerTarget() 335 object.set_type(scope.MakeNumericType(T::category, KindExpr{T::kind})); in SaveNumericPointerTarget() 716 object.set_type(type); in SaveNameAsPointerTarget() 737 object.set_type(*spec); in SaveNameAsPointerTarget() 739 object.set_type(scope.MakeCharacterType( in SaveNameAsPointerTarget() 947 ptrDtObj.set_type(DEREF(object.type())); in InitializeDataPointer() 965 ptrInitObj.set_type(ptrDtDeclType); in PackageIntValue()
|
| H A D | type.cpp | 384 instanceDetails.set_type(newScope.MakeNumericType( in Instantiate() 390 instanceDetails.set_type(*type); in Instantiate()
|
| /llvm-project/flang/include/flang/Evaluate/ |
| H A D | characteristics.h | 166 TypeAndShape &set_type(DynamicType t) { in set_type() function 338 void SetType(DynamicType t) { std::get<TypeAndShape>(u).set_type(t); } in SetType()
|
| /llvm-project/polly/lib/External/isl/interface/ |
| H A D | template_cpp.cc | 959 static Kind set_type{ Domain }; variable 980 { "space", { params, set_type, map_type } }, 981 { "set", { params, set_type } }, 982 { "point", { params, set_type } }, 985 { "fixed_box", { set_type, map_type } }, 1039 { set_anon, set_type },
|
| /llvm-project/openmp/runtime/src/ |
| H A D | kmp_settings.cpp | 2280 #define set_type(val) _set_param(type, out_affinity->type, val) in __kmp_parse_affinity_env() macro 2307 set_type(affinity_none); in __kmp_parse_affinity_env() 2311 set_type(affinity_scatter); in __kmp_parse_affinity_env() 2315 set_type(affinity_compact); in __kmp_parse_affinity_env() 2319 set_type(affinity_logical); in __kmp_parse_affinity_env() 2323 set_type(affinity_physical); in __kmp_parse_affinity_env() 2327 set_type(affinity_explicit); in __kmp_parse_affinity_env() 2331 set_type(affinity_balanced); in __kmp_parse_affinity_env() 2335 set_type(affinity_disabled); in __kmp_parse_affinity_env() 2516 #undef set_type in __kmp_parse_affinity_env()
|
| /llvm-project/mlir/test/python/ir/ |
| H A D | value.py | 310 value.set_type(i64)
|