Home
last modified time | relevance | path

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

123

/dports/devel/boost-docs/boost_1_72_0/libs/outcome/test/tests/
H A Dissue0061.cpp37 struct udt1 struct
40 udt1() = default; argument
42 udt1(udt1 &&o) = delete;
43 udt1(const udt1 &) = delete;
44 udt1 &operator=(udt1 &&o) = delete;
45 udt1 &operator=(const udt1 &) = delete;
85 struct udt1 struct
90 udt1(udt1 &&o) = delete;
91 udt1(const udt1 &) = delete;
92 udt1 &operator=(udt1 &&o) = delete;
[all …]
H A Dissue0010.cpp38 struct udt1 // NOLINT struct
41 udt1() = default; argument
42 constexpr explicit udt1(const char *v) noexcept : _v(v) {} in udt1() function
43 constexpr udt1(udt1 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt1() function
44 udt1(const udt1 &) = default;
45 constexpr udt1 &operator=(udt1 &&o) noexcept in operator =() argument
51 udt1 &operator=(const udt1 &) = delete;
67 udt1 &operator=(const udt1 &) = delete; argument
70 result<udt1, udt2> p(udt1{a});
71 result<udt1, udt2> n(udt2{b});
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/outcome/test/tests/
H A Dissue0061.cpp37 struct udt1 struct
40 udt1() = default; argument
42 udt1(udt1 &&o) = delete;
43 udt1(const udt1 &) = delete;
44 udt1 &operator=(udt1 &&o) = delete;
45 udt1 &operator=(const udt1 &) = delete;
85 struct udt1 struct
90 udt1(udt1 &&o) = delete;
91 udt1(const udt1 &) = delete;
92 udt1 &operator=(udt1 &&o) = delete;
[all …]
H A Dissue0010.cpp38 struct udt1 // NOLINT struct
41 udt1() = default; argument
42 constexpr explicit udt1(const char *v) noexcept : _v(v) {} in udt1() argument
43 constexpr udt1(udt1 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt1() function
44 udt1(const udt1 &) = default;
45 constexpr udt1 &operator=(udt1 &&o) noexcept in operator =() argument
51 udt1 &operator=(const udt1 &) = delete;
67 udt1 &operator=(const udt1 &) = delete; argument
70 result<udt1, udt2> p(udt1{a});
71 result<udt1, udt2> n(udt2{b});
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/outcome/test/tests/
H A Dissue0061.cpp37 struct udt1 struct
40 udt1() = default; argument
42 udt1(udt1 &&o) = delete;
43 udt1(const udt1 &) = delete;
44 udt1 &operator=(udt1 &&o) = delete;
45 udt1 &operator=(const udt1 &) = delete;
85 struct udt1 struct
90 udt1(udt1 &&o) = delete;
91 udt1(const udt1 &) = delete;
92 udt1 &operator=(udt1 &&o) = delete;
[all …]
H A Dissue0010.cpp38 struct udt1 // NOLINT struct
41 udt1() = default; argument
42 constexpr explicit udt1(const char *v) noexcept : _v(v) {} in udt1() function
43 constexpr udt1(udt1 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt1() argument
44 udt1(const udt1 &) = default;
45 constexpr udt1 &operator=(udt1 &&o) noexcept in operator =() argument
51 udt1 &operator=(const udt1 &) = delete;
67 udt1 &operator=(const udt1 &) = delete; argument
70 result<udt1, udt2> p(udt1{a});
71 result<udt1, udt2> n(udt2{b});
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/outcome/test/tests/
H A Dissue0061.cpp37 struct udt1 struct
40 udt1() = default; argument
42 udt1(udt1 &&o) = delete;
43 udt1(const udt1 &) = delete;
44 udt1 &operator=(udt1 &&o) = delete;
45 udt1 &operator=(const udt1 &) = delete;
85 struct udt1 struct
90 udt1(udt1 &&o) = delete;
91 udt1(const udt1 &) = delete;
92 udt1 &operator=(udt1 &&o) = delete;
[all …]
H A Dissue0010.cpp38 struct udt1 // NOLINT struct
41 udt1() = default; argument
42 constexpr explicit udt1(const char *v) noexcept : _v(v) {} in udt1() argument
43 constexpr udt1(udt1 &&o) noexcept : _v(o._v) { o._v = nullptr; } in udt1() argument
44 udt1(const udt1 &) = default;
45 constexpr udt1 &operator=(udt1 &&o) noexcept in operator =() argument
51 udt1 &operator=(const udt1 &) = delete;
67 udt1 &operator=(const udt1 &) = delete; argument
70 result<udt1, udt2> p(udt1{a});
71 result<udt1, udt2> n(udt2{b});
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
69 int operator()(udt1&&) const { return 0; } in operator ()()
76 int operator()(udt1&&) const { return 0; } in operator ()()
119 typedef boost::variant<udt1,udt2> var_t; in main()
120 udt1 u1; in main()
132 typedef unary_check_content_type<udt1> check1_t; in main()
133 typedef unary_check_content_type<const udt1> check1_const_t; in main()
146 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
151 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
158 typedef binary_check_content_type<udt1,udt2> check12_t; in main()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
69 int operator()(udt1&&) const { return 0; } in operator ()()
76 int operator()(udt1&&) const { return 0; } in operator ()()
119 typedef boost::variant<udt1,udt2> var_t; in main()
120 udt1 u1; in main()
132 typedef unary_check_content_type<udt1> check1_t; in main()
133 typedef unary_check_content_type<const udt1> check1_const_t; in main()
146 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
151 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
158 typedef binary_check_content_type<udt1,udt2> check12_t; in main()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
69 int operator()(udt1&&) const { return 0; } in operator ()()
76 int operator()(udt1&&) const { return 0; } in operator ()()
119 typedef boost::variant<udt1,udt2> var_t; in main()
120 udt1 u1; in main()
132 typedef unary_check_content_type<udt1> check1_t; in main()
133 typedef unary_check_content_type<const udt1> check1_const_t; in main()
146 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
151 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
158 typedef binary_check_content_type<udt1,udt2> check12_t; in main()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
69 int operator()(udt1&&) const { return 0; } in operator ()()
76 int operator()(udt1&&) const { return 0; } in operator ()()
119 typedef boost::variant<udt1,udt2> var_t; in main()
120 udt1 u1; in main()
132 typedef unary_check_content_type<udt1> check1_t; in main()
133 typedef unary_check_content_type<const udt1> check1_const_t; in main()
146 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
151 boost::variant<udt1, udt2>(udt2()))), 1 ); in main()
158 typedef binary_check_content_type<udt1,udt2> check12_t; in main()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
103 typedef boost::variant<udt1,udt2> var_t; in test_main()
104 udt1 u1; in test_main()
116 typedef unary_check_content_type<udt1> check1_t; in test_main()
117 typedef unary_check_content_type<const udt1> check1_const_t; in test_main()
131 typedef binary_check_content_type<udt1,udt2> check12_t; in test_main()
132 typedef binary_check_content_type<const udt1, const udt2> check12_const_t; in test_main()
133 typedef binary_check_content_type<udt2,udt1> check21_t; in test_main()
134 typedef binary_check_content_type<const udt2, const udt1> check21_const_t; in test_main()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
103 typedef boost::variant<udt1,udt2> var_t; in test_main()
104 udt1 u1; in test_main()
116 typedef unary_check_content_type<udt1> check1_t; in test_main()
117 typedef unary_check_content_type<const udt1> check1_const_t; in test_main()
131 typedef binary_check_content_type<udt1,udt2> check12_t; in test_main()
132 typedef binary_check_content_type<const udt1, const udt2> check12_const_t; in test_main()
133 typedef binary_check_content_type<udt2,udt1> check21_t; in test_main()
134 typedef binary_check_content_type<const udt2, const udt1> check21_const_t; in test_main()
/dports/databases/percona57-server/boost_1_59_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
103 typedef boost::variant<udt1,udt2> var_t; in test_main()
104 udt1 u1; in test_main()
116 typedef unary_check_content_type<udt1> check1_t; in test_main()
117 typedef unary_check_content_type<const udt1> check1_const_t; in test_main()
131 typedef binary_check_content_type<udt1,udt2> check12_t; in test_main()
132 typedef binary_check_content_type<const udt1, const udt2> check12_const_t; in test_main()
133 typedef binary_check_content_type<udt2,udt1> check21_t; in test_main()
134 typedef binary_check_content_type<const udt2, const udt1> check21_const_t; in test_main()
/dports/databases/xtrabackup/boost_1_59_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
103 typedef boost::variant<udt1,udt2> var_t; in test_main()
104 udt1 u1; in test_main()
116 typedef unary_check_content_type<udt1> check1_t; in test_main()
117 typedef unary_check_content_type<const udt1> check1_const_t; in test_main()
131 typedef binary_check_content_type<udt1,udt2> check12_t; in test_main()
132 typedef binary_check_content_type<const udt1, const udt2> check12_const_t; in test_main()
133 typedef binary_check_content_type<udt2,udt1> check21_t; in test_main()
134 typedef binary_check_content_type<const udt2, const udt1> check21_const_t; in test_main()
/dports/databases/percona57-client/boost_1_59_0/libs/variant/test/
H A Dvariant_visit_test.cpp22 struct udt1 struct
103 typedef boost::variant<udt1,udt2> var_t; in test_main()
104 udt1 u1; in test_main()
116 typedef unary_check_content_type<udt1> check1_t; in test_main()
117 typedef unary_check_content_type<const udt1> check1_const_t; in test_main()
131 typedef binary_check_content_type<udt1,udt2> check12_t; in test_main()
132 typedef binary_check_content_type<const udt1, const udt2> check12_const_t; in test_main()
133 typedef binary_check_content_type<udt2,udt1> check21_t; in test_main()
134 typedef binary_check_content_type<const udt2, const udt1> check21_const_t; in test_main()
/dports/devel/boost-docs/boost_1_72_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/devel/boost-python-libs/boost_1_72_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/databases/percona57-server/boost_1_59_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/databases/xtrabackup/boost_1_59_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/databases/percona57-client/boost_1_59_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));
/dports/devel/boost-libs/boost_1_72_0/libs/mpl/doc/src/refmanual/
H A Dinherit.rst176 struct udt1 { int n; };
179 typedef inherit<udt1,udt2>::type r1;
180 typedef inherit<empty_base,udt1>::type r2;
181 typedef inherit<empty_base,udt1,empty_base,empty_base>::type r3;
182 typedef inherit<udt1,empty_base,udt2>::type r4;
185 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r1> ));
187 BOOST_MPL_ASSERT(( is_same< r2, udt1> ));
188 BOOST_MPL_ASSERT(( is_same< r3, udt1 > ));
189 BOOST_MPL_ASSERT(( is_base_and_derived< udt1, r4 > ));

123