Home
last modified time | relevance | path

Searched refs:Tup (Results 1 – 16 of 16) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dmove.pass.cpp53 using Tup = std::tuple<Elem>; in test_sfinae() typedef
58 static_assert(std::is_default_constructible<Tup>::value, ""); in test_sfinae()
59 static_assert(std::is_move_constructible<Tup>::value, ""); in test_sfinae()
60 static_assert(!std::is_copy_constructible<Tup>::value, ""); in test_sfinae()
61 static_assert(!std::is_constructible<Tup, Tup&>::value, ""); in test_sfinae()
65 static_assert(std::is_constructible<Tup, Elem&&>::value, ""); in test_sfinae()
66 static_assert(!std::is_constructible<Tup, Elem const&>::value, ""); in test_sfinae()
67 static_assert(!std::is_constructible<Tup, Elem&>::value, ""); in test_sfinae()
71 static_assert(std::is_constructible<Tup, Tag, Alloc>::value, ""); in test_sfinae()
72 static_assert(std::is_constructible<Tup, Tag, Alloc, Tup&&>::value, ""); in test_sfinae()
[all …]
Dimplicit_deduction_guides.pass.cpp86 using Tup = std::tuple<int, decltype(nullptr)>; in test_primary_template() typedef
87 const Tup t(42, nullptr); in test_primary_template()
90 ASSERT_SAME_TYPE(decltype(t1), Tup); in test_primary_template()
93 using Tup = std::tuple<void*, unsigned, char>; in test_primary_template() typedef
94 std::tuple t1(Tup(nullptr, 42, 'a')); in test_primary_template()
95 ASSERT_SAME_TYPE(decltype(t1), Tup); in test_primary_template()
98 using Tup = std::tuple<int, decltype(nullptr)>; in test_primary_template() typedef
99 const Tup t(42, nullptr); in test_primary_template()
102 ASSERT_SAME_TYPE(decltype(t1), Tup); in test_primary_template()
105 using Tup = std::tuple<void*, unsigned, char>; in test_primary_template() typedef
[all …]
DPR27684_contains_ref_to_incomplete_type.pass.cpp36 using Tup = std::tuple<const IT&, const IT&>; in main() typedef
37 Tup t(cinc1, cinc2); in main()
42 using Tup = std::tuple<const IT&, const IT&>; in main() typedef
43 Tup t(inc1, inc2); in main()
DUTypes.pass.cpp129 using Tup = std::tuple<E, E, E>; in main() typedef
132 static_assert(test_convertible<Tup, E, E, E>(), ""); in main()
134 Tup t(E(0), E(1)); in main()
135 static_assert(!test_convertible<Tup, E, E>(), ""); in main()
140 Tup t2(E(0)); in main()
141 static_assert(!test_convertible<Tup, E>(), ""); in main()
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
Dapply.pass.cpp49 using Tup = std::tuple<>; in test_constexpr_evaluation() typedef
51 constexpr Tup t; in test_constexpr_evaluation()
56 using Tup = std::tuple<int>; in test_constexpr_evaluation() typedef
58 constexpr Tup t(42); in test_constexpr_evaluation()
63 using Tup = std::tuple<int, long>; in test_constexpr_evaluation() typedef
65 constexpr Tup t(42, 101); in test_constexpr_evaluation()
70 using Tup = std::pair<int, long>; in test_constexpr_evaluation() typedef
72 constexpr Tup t(42, 101); in test_constexpr_evaluation()
77 using Tup = std::tuple<int, long, int>; in test_constexpr_evaluation() typedef
79 constexpr Tup t(42, 101, -1); in test_constexpr_evaluation()
[all …]
Dmake_from_tuple.pass.cpp113 using Tup = std::tuple<>; in test_perfect_forwarding() typedef
114 Tup tup; in test_perfect_forwarding()
115 Tup const& ctup = tup; in test_perfect_forwarding()
120 using Tup = std::tuple<int>; in test_perfect_forwarding() typedef
121 Tup tup(42); in test_perfect_forwarding()
122 Tup const& ctup = tup; in test_perfect_forwarding()
129 using Tup = std::tuple<int&, const char*, unsigned&&>; in test_perfect_forwarding() typedef
132 Tup tup(x, "hello world", std::move(y)); in test_perfect_forwarding()
133 Tup const& ctup = tup; in test_perfect_forwarding()
141 using Tup = std::pair<int&, const char*>; in test_perfect_forwarding() typedef
[all …]
/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
Ddisable_reduced_arity_initialization_extension.pass.cpp85 using Tup = std::tuple<E, E, E>; in main() typedef
88 static_assert(test_convertible<Tup, E, E, E>(), ""); in main()
90 Tup t(E(0), E(1)); in main()
91 static_assert(std::is_constructible<Tup, E, E>::value, ""); in main()
92 static_assert(!test_convertible<Tup, E, E>(), ""); in main()
97 Tup t2(E(0)); in main()
98 static_assert(std::is_constructible<Tup, E>::value, ""); in main()
99 static_assert(!test_convertible<Tup, E>(), ""); in main()
Denable_reduced_arity_initialization_extension.pass.cpp98 using Tup = std::tuple<E, E, E>; in main() typedef
99 static_assert(test_convertible<Tup, E, E, E>(), ""); in main()
101 Tup t = {E(0), E(1)}; in main()
102 static_assert(test_convertible<Tup, E, E>(), ""); in main()
107 Tup t2 = {E(0)}; in main()
108 static_assert(test_convertible<Tup, E>(), ""); in main()
/external/spirv-llvm/lib/SPIRV/
DSPIRVUtil.cpp925 std::tuple<unsigned, unsigned, std::string> Tup; in getSPIRVSource() local
927 N.get(std::get<0>(Tup)) in getSPIRVSource()
928 .get(std::get<1>(Tup)) in getSPIRVSource()
930 .get(std::get<2>(Tup)); in getSPIRVSource()
931 return Tup; in getSPIRVSource()
/external/libcxx/docs/
DUsingLibcxx.rst198 using Tup = std::tuple<std::string, int, std::error_code>;
199 return Tup{"hello world", 42}; // explicit constructor called. OK.
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h834 template <typename Tup, size_t kRemainingSize>
836 OutIter operator() (Func f, const Tup& t, OutIter out) const { in operator()
838 return IterateOverTuple<Tup, kRemainingSize - 1>()(f, t, out); in operator()
841 template <typename Tup>
842 struct IterateOverTuple<Tup, 0> {
843 OutIter operator() (Func /* f */, const Tup& /* t */, OutIter out) const {
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h462 template <typename Tup, size_t kRemainingSize>
464 OutIter operator() (Func f, const Tup& t, OutIter out) const { in operator()
466 return IterateOverTuple<Tup, kRemainingSize - 1>()(f, t, out); in operator()
469 template <typename Tup>
470 struct IterateOverTuple<Tup, 0> {
471 OutIter operator() (Func /* f */, const Tup& /* t */, OutIter out) const {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp1538 for(auto &Tup : DupCandidates) { in selectBestSuccessor() local
1541 std::tie(DupProb, Succ) = Tup; in selectBestSuccessor()
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Name_Index.tab6768 tpw Tupí Tupí
Diso-639-3.tab6509 tpw I E Tupí
Dlanguage-subtag-registry35038 Description: Tupí