Home
last modified time | relevance | path

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

12

/llvm-project/libcxx/test/std/containers/unord/unord.multiset/
H A Dkey_eq.pass.cpp21 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 Dhash_function.pass.cpp21 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 Dmerge.pass.cpp65 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 Dextract_iterator.pass.cpp43 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 Dcomp.pass.cpp18 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 Dkey_eq.pass.cpp21 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 Dhash_function.pass.cpp21 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 Dmerge.pass.cpp65 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 Dextract_iterator.pass.cpp43 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 Dcomp.pass.cpp18 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 Dmerge.pass.cpp65 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 Dextract_iterator.pass.cpp43 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 Dmerge.pass.cpp65 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 Dextract_iterator.pass.cpp43 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 Disl_pw_insert_dims_templ.c16 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 Disl_fold.c354 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 Disl_pw_templ.c1242 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 DSetVector.h67 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 Dsymbol.cpp150 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 Druntime-type-info.cpp212 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 Dtype.cpp384 instanceDetails.set_type(newScope.MakeNumericType( in Instantiate()
390 instanceDetails.set_type(*type); in Instantiate()
/llvm-project/flang/include/flang/Evaluate/
H A Dcharacteristics.h166 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 Dtemplate_cpp.cc959 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 Dkmp_settings.cpp2280 #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 Dvalue.py310 value.set_type(i64)

12