Home
last modified time | relevance | path

Searched refs:moveable (Results 1 – 25 of 27) sorted by relevance

12

/third_party/boost/libs/context/example/callcc/
Djump_mov.cpp14 class moveable { class
18 moveable() : in moveable() function in moveable
22 moveable( int v) : in moveable() function in moveable
26 moveable( moveable && other) { in moveable() function in moveable
30 moveable & operator=( moveable && other) { in operator =()
37 moveable( moveable const& other) = delete;
38 moveable & operator=( moveable const& other) = delete;
43 moveable data{ 1 }; in main()
47 data = std::move( moveable{ 3 }); in main()
50 data = std::move( moveable{}); in main()
/third_party/boost/libs/context/example/fiber/
Djump_mov.cpp14 class moveable { class
18 moveable() : in moveable() function in moveable
22 moveable( int v) : in moveable() function in moveable
26 moveable( moveable && other) { in moveable() function in moveable
30 moveable & operator=( moveable && other) { in operator =()
37 moveable( moveable const& other) = delete;
38 moveable & operator=( moveable const& other) = delete;
42 moveable data{ 1 }; in main()
46 data = std::move( moveable{ 3 }); in main()
49 data = std::move( moveable{}); in main()
/third_party/boost/libs/fiber/test/
Dtest_fiber_dispatch.cpp50 class moveable { class
55 moveable() : in moveable() function in moveable
60 moveable( int v) : in moveable() function in moveable
65 moveable( moveable && other) : in moveable() function in moveable
72 moveable & operator=( moveable && other) { in operator =()
81 moveable( moveable const& other) = delete;
82 moveable & operator=( moveable const& other) = delete;
198 moveable mv( 7); in test_join_moveable()
Dtest_fiber_post.cpp50 class moveable { class
55 moveable() : in moveable() function in moveable
60 moveable( int v) : in moveable() function in moveable
65 moveable( moveable && other) : in moveable() function in moveable
72 moveable & operator=( moveable && other) { in operator =()
81 moveable( moveable const& other) = delete;
82 moveable & operator=( moveable const& other) = delete;
198 moveable mv( 7); in test_join_moveable()
Dtest_unbuffered_channel_dispatch.cpp17 struct moveable { struct
21 moveable() : in moveable() function
26 moveable( int v) : in moveable() function
31 moveable( moveable && other) : in moveable() argument
38 moveable & operator=( moveable && other) { in operator =() argument
360 boost::fibers::unbuffered_channel< moveable > c; in test_moveable()
362 moveable m1( 3); in test_moveable()
367 moveable m2; in test_moveable()
Dtest_unbuffered_channel_post.cpp17 struct moveable { struct
21 moveable() : in moveable() argument
26 moveable( int v) : in moveable() argument
31 moveable( moveable && other) : in moveable() argument
38 moveable & operator=( moveable && other) { in operator =() argument
360 boost::fibers::unbuffered_channel< moveable > c; in test_moveable()
362 moveable m1( 3); in test_moveable()
367 moveable m2; in test_moveable()
Dtest_buffered_channel_dispatch.cpp17 struct moveable { struct
21 moveable() : in moveable() argument
26 moveable( int v) : in moveable() function
31 moveable( moveable && other) : in moveable() function
38 moveable & operator=( moveable && other) { in operator =() argument
447 boost::fibers::buffered_channel< moveable > c( 16); in test_moveable()
448 moveable m1( 3), m2; in test_moveable()
Dtest_buffered_channel_post.cpp17 struct moveable { struct
21 moveable() : in moveable() argument
26 moveable( int v) : in moveable() argument
31 moveable( moveable && other) : in moveable() argument
38 moveable & operator=( moveable && other) { in operator =() argument
445 boost::fibers::buffered_channel< moveable > c( 16); in test_moveable()
446 moveable m1( 3), m2; in test_moveable()
/third_party/boost/libs/context/test/
Dtest_callcc.cpp69 class moveable { class
74 moveable() : in moveable() function in moveable
79 moveable( int v) : in moveable() function in moveable
84 moveable( moveable && other) : in moveable() function in moveable
91 moveable & operator=( moveable && other) { in operator =()
100 moveable( moveable const& other) = delete;
101 moveable & operator=( moveable const& other) = delete;
Dtest_fiber.cpp69 class moveable { class
74 moveable() : in moveable() function in moveable
79 moveable( int v) : in moveable() function in moveable
84 moveable( moveable && other) : in moveable() function in moveable
91 moveable & operator=( moveable && other) { in operator =()
100 moveable( moveable const& other) = delete;
101 moveable & operator=( moveable const& other) = delete;
/third_party/boost/libs/coroutine2/test/
Dtest_coroutine.cpp59 class moveable class
64 moveable() : in moveable() function in moveable
68 moveable( int) : in moveable() function in moveable
72 moveable( moveable const&) = delete;
73 moveable & operator=( moveable const&) = delete;
75 moveable( moveable && other) : in moveable() function in moveable
79 moveable & operator=( moveable && other) in operator =()
264 moveable mv( 7); in test_move()
/third_party/boost/libs/hof/test/
Dapply_eval.cpp54 std::unique_ptr<int> moveable(int i) in moveable() function
61 BOOST_HOF_TEST_CHECK(*boost::hof::apply_eval(&moveable, boost::hof::always(1)) == 1); in BOOST_HOF_TEST_CASE()
62 BOOST_HOF_TEST_CHECK(*boost::hof::apply_eval(&moveable, boost::hof::always(3)) == 3); in BOOST_HOF_TEST_CASE()
/third_party/boost/libs/coroutine/test/
Dtest_asymmetric_coroutine.cpp63 class moveable class
66 BOOST_MOVABLE_BUT_NOT_COPYABLE( moveable)
71 moveable() : in moveable() function in moveable
75 moveable( int) : in moveable() function in moveable
79 moveable( BOOST_RV_REF( moveable) other) : in moveable() function in moveable
83 moveable & operator=( BOOST_RV_REF( moveable) other) in operator =()
86 moveable tmp( boost::move( other) ); in operator =()
240 moveable mv( 7); in test_move()
Dtest_symmetric_coroutine.cpp142 class moveable class
145 BOOST_MOVABLE_BUT_NOT_COPYABLE( moveable)
150 moveable() : in moveable() function in moveable
154 moveable( int) : in moveable() function in moveable
158 moveable( BOOST_RV_REF( moveable) other) : in moveable() function in moveable
162 moveable & operator=( BOOST_RV_REF( moveable) other) in operator =()
165 moveable tmp( boost::move( other) ); in operator =()
306 moveable mv( 7); in test_move()
/third_party/boost/libs/nowide/build/
DJamfile.v231 …[ check-target-builds cxx11_moveable_fstreams "std::fstream is moveable and swappable" : : <build>…
/third_party/flutter/skia/third_party/externals/sdl/test/
Drelative_mode.markdown8 - When in relative mode, the mouse shouldn't be moveable outside of the window.
/third_party/boost/libs/outcome/doc/src/content/reference/functions/hooks/
Doverride_outcome_exception.md13 non-copyable and non-moveable).
/third_party/boost/libs/nowide/test/
DJamfile.v237 …[ check-target-builds cxx11_moveable_fstreams "std::fstream is moveable and swappable" : : <build>…
/third_party/boost/libs/optional/doc/
D91_relnotes.qbk97 * Added support for rvalue references. Now `optional<T>` works with moveable but non-copyable `T`'s,
100 * `optional` is moveable, including conditional `noexcept` specifications, which make it `move_if_n…
/third_party/boost/libs/coroutine/doc/
Dcoroutine.qbk31 A coroutine is moveable-only.
/third_party/boost/libs/coroutine2/doc/
Dcoroutine.qbk28 A coroutine is moveable-only.
/third_party/libnl/
DChangeLog217 o Fix symlinks to libnl library files to be moveable
/third_party/boost/libs/parameter/doc/
Dindex.rst153 ``border_width``, but instead we got a moveable window with a
169 Is this window moveable and initially invisible, or unmoveable and
/third_party/boost/libs/move/doc/
Dmove.qbk869 …[@https://svn.boost.org/trac/boost/ticket/12194 #12194 ['"Copy assignment on moveable and copyable…
/third_party/boost/libs/container/doc/
Dcontainer.qbk1084 `resize`, `reserve` or `shrink_to_fit` for either copyable or no-throw moveable classes.
1087 …ong exception guarantee degrades the insertion performance of copyable and throwing-moveable types,

12