Home
last modified time | relevance | path

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

12345678910>>...37

/dports/devel/eastl/EASTL-3.13.06/test/source/
H A DConceptImpls.h67 class CopyConstructible
71 static CopyConstructible Create() in Create()
73 CopyConstructible x; in Create()
77 CopyConstructible(const CopyConstructible&) = default;
78 ~CopyConstructible() = default;
80 CopyConstructible& operator=(const CopyConstructible&) = delete;
81 CopyConstructible& operator=(CopyConstructible&&) = delete;
86 CopyConstructible() : value(defaultValue) {} in CopyConstructible() function
95 static_assert(eastl::is_copy_constructible<CopyConstructible>::value,
97 static_assert(!eastl::is_copy_assignable<CopyConstructible>::value,
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/libcxx/ranges/range.nonprop.cache/
H A Dctor.copy.pass.cpp21 struct CopyConstructible { struct
23 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() argument
24 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() function
25 CopyConstructible& operator=(CopyConstructible const&) = default;
26 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
64 test<CopyConstructible<true>>(); in tests()
65 test<CopyConstructible<false>>(); in tests()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.nonprop.cache/
H A Dctor.copy.pass.cpp22 struct CopyConstructible { struct
24 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() function
25 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() argument
26 CopyConstructible& operator=(CopyConstructible const&) = default;
27 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
65 test<CopyConstructible<true>>(); in tests()
66 test<CopyConstructible<false>>(); in tests()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.nonprop.cache/
H A Dctor.copy.pass.cpp22 struct CopyConstructible { struct
24 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() argument
25 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() argument
26 CopyConstructible& operator=(CopyConstructible const&) = default;
27 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
65 test<CopyConstructible<true>>(); in tests()
66 test<CopyConstructible<false>>(); in tests()
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.nonprop.cache/
H A Dctor.copy.pass.cpp22 struct CopyConstructible { struct
24 constexpr explicit CopyConstructible(int i) : x(i) { } in CopyConstructible() argument
25 …constexpr CopyConstructible(CopyConstructible const& other) noexcept(NoexceptCopy) : x(other.x) { } in CopyConstructible() argument
26 CopyConstructible& operator=(CopyConstructible const&) = default;
27 constexpr bool operator==(CopyConstructible const& other) const { return x == other.x; } in operator ==() argument
65 test<CopyConstructible<true>>(); in tests()
66 test<CopyConstructible<false>>(); in tests()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/
H A Dtypes.h23 struct CopyConstructible { struct
24 constexpr CopyConstructible() = default;
25 constexpr explicit CopyConstructible(int x) : value(x) { } in CopyConstructible() function
26 CopyConstructible(CopyConstructible const&) noexcept(false) = default;
27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument
31 static_assert(!std::copyable<CopyConstructible>); argument
32 static_assert(!std::is_nothrow_copy_constructible_v<CopyConstructible>);
33 static_assert(!std::movable<CopyConstructible>);
34 static_assert(!std::is_nothrow_move_constructible_v<CopyConstructible>);
H A Dproperties.compile.pass.cpp40 …tic_assert(sizeof(std::ranges::__copyable_box<CopyConstructible>) == sizeof(std::optional<CopyCons…
H A Dctor.default.pass.cpp42 Box<CopyConstructible> box; in test()
44 assert((*box).value == CopyConstructible().value); in test()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/
H A Dtypes.h23 struct CopyConstructible { struct
24 constexpr CopyConstructible() = default;
25 constexpr explicit CopyConstructible(int x) : value(x) { } in CopyConstructible() argument
26 CopyConstructible(CopyConstructible const&) noexcept(false) = default;
27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument
31 static_assert(!std::copyable<CopyConstructible>); argument
32 static_assert(!std::is_nothrow_copy_constructible_v<CopyConstructible>);
33 static_assert(!std::movable<CopyConstructible>);
34 static_assert(!std::is_nothrow_move_constructible_v<CopyConstructible>);
H A Dproperties.compile.pass.cpp39 …tic_assert(sizeof(std::ranges::__copyable_box<CopyConstructible>) == sizeof(std::optional<CopyCons…
H A Dctor.default.pass.cpp41 Box<CopyConstructible> box; in test()
43 assert((*box).value == CopyConstructible().value); in test()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/
H A Dtypes.h23 struct CopyConstructible { struct
24 constexpr CopyConstructible() = default;
25 constexpr explicit CopyConstructible(int x) : value(x) { } in CopyConstructible() function
26 CopyConstructible(CopyConstructible const&) noexcept(false) = default;
27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument
31 static_assert(!std::copyable<CopyConstructible>); argument
32 static_assert(!std::is_nothrow_copy_constructible_v<CopyConstructible>);
33 static_assert(!std::movable<CopyConstructible>);
34 static_assert(!std::is_nothrow_move_constructible_v<CopyConstructible>);
H A Dproperties.compile.pass.cpp40 …tic_assert(sizeof(std::ranges::__copyable_box<CopyConstructible>) == sizeof(std::optional<CopyCons…
H A Dctor.default.pass.cpp42 Box<CopyConstructible> box; in test()
44 assert((*box).value == CopyConstructible().value); in test()
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/libcxx/ranges/range.adaptors/range.copy.wrap/
H A Dtypes.h23 struct CopyConstructible { struct
24 constexpr CopyConstructible() = default;
25 constexpr explicit CopyConstructible(int x) : value(x) { } in CopyConstructible() argument
26 CopyConstructible(CopyConstructible const&) noexcept(false) = default;
27 CopyConstructible& operator=(CopyConstructible const&) = delete; argument
31 static_assert(!std::copyable<CopyConstructible>); argument
32 static_assert(!std::is_nothrow_copy_constructible_v<CopyConstructible>);
33 static_assert(!std::movable<CopyConstructible>);
34 static_assert(!std::is_nothrow_move_constructible_v<CopyConstructible>);
H A Dproperties.compile.pass.cpp40 …tic_assert(sizeof(std::ranges::__copyable_box<CopyConstructible>) == sizeof(std::optional<CopyCons…
H A Dctor.default.pass.cpp42 Box<CopyConstructible> box; in test()
44 assert((*box).value == CopyConstructible().value); in test()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/base/concept/
H A Dcopy_constructible.h39 struct CopyConstructible { struct
40 CopyConstructible(const CopyConstructible&);
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/base/
H A Dresult.h250 struct CopyConstructible {};
253 struct CopyConstructible<false> {
254 constexpr CopyConstructible() = default;
255 constexpr CopyConstructible(const CopyConstructible&) = delete;
256 constexpr CopyConstructible(CopyConstructible&&) = default;
257 CopyConstructible& operator=(const CopyConstructible&) = default;
258 CopyConstructible& operator=(CopyConstructible&&) = default;
303 public internal::CopyConstructible<
/dports/devel/folly/folly-2021.12.27.00/folly/
H A DExpected.h263 struct CopyConstructible { struct
264 constexpr CopyConstructible() = default;
265 CopyConstructible(const CopyConstructible& that) noexcept(Noexcept) { in noexcept() argument
268 constexpr CopyConstructible(CopyConstructible&&) = default;
269 CopyConstructible& operator=(const CopyConstructible&) = default; argument
270 CopyConstructible& operator=(CopyConstructible&&) = default; argument
276 CopyConstructible(const CopyConstructible&) = delete;
277 constexpr CopyConstructible(CopyConstructible&&) = default;
278 CopyConstructible& operator=(const CopyConstructible&) = default;
279 CopyConstructible& operator=(CopyConstructible&&) = default;
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/random/test/
H A Dconcepts.hpp110 CopyConstructible<E>,
162 CopyConstructible<D>,
176 BOOST_CONCEPT_ASSERT((CopyConstructible<P>));
/dports/devel/boost-docs/boost_1_72_0/libs/range/doc/reference/adaptors/
H A Dformatted.qbk31 …* `sep` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Char,T…
32 …* `prefix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Cha…
33 …* `postfix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Ch…
/dports/devel/boost-python-libs/boost_1_72_0/libs/range/doc/reference/adaptors/
H A Dformatted.qbk31 …* `sep` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Char,T…
32 …* `prefix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Cha…
33 …* `postfix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Ch…
/dports/devel/boost-python-libs/boost_1_72_0/libs/random/test/
H A Dconcepts.hpp110 CopyConstructible<E>,
162 CopyConstructible<D>,
176 BOOST_CONCEPT_ASSERT((CopyConstructible<P>));
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/range/doc/reference/adaptors/
H A Dformatted.qbk31 …* `sep` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Char,T…
32 …* `prefix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Cha…
33 …* `postfix` has a type that is CopyConstructible and able to be streamed to `std::basic_ostream<Ch…

12345678910>>...37