/third_party/boost/libs/context/example/callcc/ |
D | jump_mov.cpp | 14 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/ |
D | jump_mov.cpp | 14 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/ |
D | test_fiber_dispatch.cpp | 50 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()
|
D | test_fiber_post.cpp | 50 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()
|
D | test_unbuffered_channel_dispatch.cpp | 17 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()
|
D | test_unbuffered_channel_post.cpp | 17 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()
|
D | test_buffered_channel_dispatch.cpp | 17 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()
|
D | test_buffered_channel_post.cpp | 17 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/ |
D | test_callcc.cpp | 69 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;
|
D | test_fiber.cpp | 69 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/ |
D | test_coroutine.cpp | 59 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/ |
D | apply_eval.cpp | 54 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/ |
D | test_asymmetric_coroutine.cpp | 63 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()
|
D | test_symmetric_coroutine.cpp | 142 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/ |
D | Jamfile.v2 | 31 …[ check-target-builds cxx11_moveable_fstreams "std::fstream is moveable and swappable" : : <build>…
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | relative_mode.markdown | 8 - 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/ |
D | override_outcome_exception.md | 13 non-copyable and non-moveable).
|
/third_party/boost/libs/nowide/test/ |
D | Jamfile.v2 | 37 …[ check-target-builds cxx11_moveable_fstreams "std::fstream is moveable and swappable" : : <build>…
|
/third_party/boost/libs/optional/doc/ |
D | 91_relnotes.qbk | 97 * 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/ |
D | coroutine.qbk | 31 A coroutine is moveable-only.
|
/third_party/boost/libs/coroutine2/doc/ |
D | coroutine.qbk | 28 A coroutine is moveable-only.
|
/third_party/libnl/ |
D | ChangeLog | 217 o Fix symlinks to libnl library files to be moveable
|
/third_party/boost/libs/parameter/doc/ |
D | index.rst | 153 ``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/ |
D | move.qbk | 869 …[@https://svn.boost.org/trac/boost/ticket/12194 #12194 ['"Copy assignment on moveable and copyable…
|
/third_party/boost/libs/container/doc/ |
D | container.qbk | 1084 `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,
|