Home
last modified time | relevance | path

Searched refs:moved (Results 1 – 25 of 1053) sorted by relevance

12345678910>>...43

/third_party/boost/libs/move/test/
Dmove_if_noexcept.cpp42 bool moved() const //Observer in moved() function in copy_movable_noexcept
73 bool moved() const //Observer in moved() function in movable_throwable
136 BOOST_CHECK(m.moved()); in main()
138 BOOST_CHECK(m2.moved()); in main()
140 BOOST_CHECK(m3.moved()); in main()
141 BOOST_CHECK(!m4.moved()); in main()
146 BOOST_CHECK(m.moved()); in main()
148 BOOST_CHECK(m2.moved()); in main()
150 BOOST_CHECK(m3.moved()); in main()
151 BOOST_CHECK(!m4.moved()); in main()
[all …]
Dmove_algorithm.cpp27 if(!v[0].moved()){ in main()
35 if(v2[0].moved()){ in main()
43 if(!v2[1].moved()){ in main()
51 if(v[1].moved()){ in main()
Dmove_iterator.cpp24 BOOST_TEST(!v[0].moved()); in main()
31 BOOST_TEST(v[0].moved()); in main()
38 BOOST_TEST(v2[0].moved()); in main()
39 BOOST_TEST(!v[0].moved()); in main()
Dback_move_inserter.cpp31 if(v.begin()->moved()){ in move_test()
47 if(!v.begin()->moved()){ in move_test()
55 if(v2.begin()->moved()){ in move_test()
/third_party/boost/libs/interprocess/test/
Dupgradable_mutex_test.cpp54 scoped_lock<Mutex> moved(boost::move(u_lock)); in main() local
55 e_lock = boost::move(moved); in main()
66 scoped_lock<Mutex> moved(boost::move(u_lock), try_to_lock); in main() local
67 e_lock = boost::move(moved); in main()
80 scoped_lock<Mutex> moved(boost::move(u_lock), t); in main() local
81 e_lock = boost::move(moved); in main()
92 scoped_lock<Mutex> moved(boost::move(s_lock), try_to_lock); in main() local
93 e_lock = boost::move(moved); in main()
104 upgradable_lock<Mutex> moved(boost::move(lock)); in main() local
105 u_lock = boost::move(moved); in main()
[all …]
/third_party/boost/libs/geometry/index/test/rtree/
Drtree_move_pack.cpp27 , moved(false) in point_cm()
32 , moved(false) in point_cm()
41 moved = false; in operator =()
47 , moved(false) in point_cm()
49 BOOST_CHECK_MESSAGE(!other.moved, "only one move allowed"); in point_cm()
50 other.moved = true; in point_cm()
54 BOOST_CHECK_MESSAGE(!other.moved, "only one move allowed"); in operator =()
57 moved = false; in operator =()
58 other.moved = true; in operator =()
63 bool moved; member in point_cm
[all …]
/third_party/boost/libs/contract/example/features/
Dmove.cpp17 if(!moved()) { // Do not check (some) invariants for moved-from objects. in invariant()
27 BOOST_CONTRACT_ASSERT(!other.moved()); in circular_buffer()
32 BOOST_CONTRACT_ASSERT(!moved()); in __anon875c02b10202()
33 BOOST_CONTRACT_ASSERT(other.moved()); in __anon875c02b10202()
45 BOOST_CONTRACT_ASSERT(!other.moved()); in operator =()
48 BOOST_CONTRACT_ASSERT(!moved()); in operator =()
49 BOOST_CONTRACT_ASSERT(other.moved()); in operator =()
61 bool moved() const { in moved() function in circular_buffer
84 BOOST_CONTRACT_ASSERT(!moved()); in __anon875c02b10602()
92 BOOST_CONTRACT_ASSERT(!other.moved()); in circular_buffer()
[all …]
/third_party/skia/src/gpu/
DGrRenderTaskCluster.cpp135 for (GrRenderTask* moved = movedHead; moved; moved = moved->fNext) { in task_cluster_visit() local
137 if (depends_on(moved, passed)) { in task_cluster_visit()
144 for (GrRenderTask* moved = movedHead; moved;) { in task_cluster_visit() local
146 describe_task(moved).c_str(), in task_cluster_visit()
149 GrRenderTask* nextMoved = moved->fNext; in task_cluster_visit()
150 llist->remove(moved); in task_cluster_visit()
151 llist->addBefore(moved, clusterHead); in task_cluster_visit()
152 moved = nextMoved; in task_cluster_visit()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dlistener_test.dart78 const Offset moved = Offset(20, 30);
82 await gesture.moveBy(moved);
100 expect(move.localPosition, const Offset(50, 50) + moved);
101 expect(move.position, center + moved);
102 expect(move.delta, moved);
103 expect(move.localDelta, moved);
106 expect(up.localPosition, const Offset(50, 50) + moved);
107 expect(up.position, center + moved);
155 const Offset moved = Offset(20, 30);
159 await gesture.moveBy(moved);
[all …]
/third_party/boost/libs/move/example/
Ddoc_move_algorithms.cpp27 assert(movable_array2[0].moved()); in main()
28 assert(!movable_array[0].moved()); in main()
32 assert(movable_array[0].moved()); in main()
33 assert(!movable_array2[0].moved()); in main()
40 assert(movable_array2[0].moved()); in main()
41 assert(!raw_movable[0].moved()); in main()
Ddoc_move_iterator.cpp23 assert(!v[0].moved()); in main()
28 assert(v[0].moved()); in main()
29 assert(!v2[0].moved()); in main()
34 assert(v2[0].moved()); in main()
35 assert(!v[0].moved()); in main()
Ddoc_move_inserter.cpp30 assert(!l.begin()->moved()); in test_move_inserter()
38 assert(l.begin()->moved()); in test_move_inserter()
39 assert(!l2.begin()->moved()); in test_move_inserter()
/third_party/boost/boost/interprocess/detail/
Dxsi_shared_memory_file_wrapper.hpp68 xsi_shared_memory_file_wrapper(BOOST_RV_REF(xsi_shared_memory_file_wrapper) moved) in xsi_shared_memory_file_wrapper() argument
69 { this->swap(moved); } in xsi_shared_memory_file_wrapper()
71 xsi_shared_memory_file_wrapper &operator=(BOOST_RV_REF(xsi_shared_memory_file_wrapper) moved) in operator =() argument
73 xsi_shared_memory_file_wrapper tmp(boost::move(moved)); in operator =()
Dfile_wrapper.hpp64 file_wrapper(BOOST_RV_REF(file_wrapper) moved) in file_wrapper() argument
66 { this->swap(moved); } in file_wrapper()
71 file_wrapper &operator=(BOOST_RV_REF(file_wrapper) moved) in operator =() argument
73 file_wrapper tmp(boost::move(moved)); in operator =()
/third_party/boost/boost/interprocess/
Dmanaged_external_buffer.hpp89 basic_managed_external_buffer(BOOST_RV_REF(basic_managed_external_buffer) moved) in basic_managed_external_buffer() argument
91 this->swap(moved); in basic_managed_external_buffer()
95 basic_managed_external_buffer &operator=(BOOST_RV_REF(basic_managed_external_buffer) moved) in operator =() argument
97 basic_managed_external_buffer tmp(boost::move(moved)); in operator =()
Dmanaged_heap_memory.hpp85 basic_managed_heap_memory(BOOST_RV_REF(basic_managed_heap_memory) moved) in basic_managed_heap_memory() argument
86 { this->swap(moved); } in basic_managed_heap_memory()
89 basic_managed_heap_memory &operator=(BOOST_RV_REF(basic_managed_heap_memory) moved) in operator =() argument
91 basic_managed_heap_memory tmp(boost::move(moved)); in operator =()
Dmanaged_xsi_shared_memory.hpp151 basic_managed_xsi_shared_memory(BOOST_RV_REF(basic_managed_xsi_shared_memory) moved) in basic_managed_xsi_shared_memory() argument
154 this->swap(moved); in basic_managed_xsi_shared_memory()
155 tmp.swap(moved); in basic_managed_xsi_shared_memory()
160 basic_managed_xsi_shared_memory &operator=(BOOST_RV_REF(basic_managed_xsi_shared_memory) moved) in operator =() argument
162 basic_managed_xsi_shared_memory tmp(boost::move(moved)); in operator =()
Dmanaged_shared_memory.hpp156 basic_managed_shared_memory(BOOST_RV_REF(basic_managed_shared_memory) moved) in basic_managed_shared_memory() argument
159 this->swap(moved); in basic_managed_shared_memory()
160 tmp.swap(moved); in basic_managed_shared_memory()
165 basic_managed_shared_memory &operator=(BOOST_RV_REF(basic_managed_shared_memory) moved) in operator =() argument
167 basic_managed_shared_memory tmp(boost::move(moved)); in operator =()
Dfile_mapping.hpp66 file_mapping(BOOST_RV_REF(file_mapping) moved) in file_mapping() argument
69 { this->swap(moved); } in file_mapping()
74 file_mapping &operator=(BOOST_RV_REF(file_mapping) moved) in operator =() argument
76 file_mapping tmp(boost::move(moved)); in operator =()
Dxsi_shared_memory.hpp98 xsi_shared_memory(BOOST_RV_REF(xsi_shared_memory) moved) in xsi_shared_memory() argument
100 { this->swap(moved); } in xsi_shared_memory()
105 xsi_shared_memory &operator=(BOOST_RV_REF(xsi_shared_memory) moved) in operator =() argument
107 xsi_shared_memory tmp(boost::move(moved)); in operator =()
Dmanaged_windows_shared_memory.hpp149 (BOOST_RV_REF(basic_managed_windows_shared_memory) moved) in basic_managed_windows_shared_memory()
150 { this->swap(moved); } in basic_managed_windows_shared_memory()
154 …c_managed_windows_shared_memory &operator=(BOOST_RV_REF(basic_managed_windows_shared_memory) moved) in operator =() argument
156 basic_managed_windows_shared_memory tmp(boost::move(moved)); in operator =()
Dmanaged_mapped_file.hpp147 basic_managed_mapped_file(BOOST_RV_REF(basic_managed_mapped_file) moved) in basic_managed_mapped_file() argument
149 this->swap(moved); in basic_managed_mapped_file()
154 basic_managed_mapped_file &operator=(BOOST_RV_REF(basic_managed_mapped_file) moved) in operator =() argument
156 basic_managed_mapped_file tmp(boost::move(moved)); in operator =()
/third_party/boost/boost/interprocess/sync/
Dfile_lock.hpp65 file_lock(BOOST_RV_REF(file_lock) moved) in file_lock() argument
67 { this->swap(moved); } in file_lock()
72 file_lock &operator=(BOOST_RV_REF(file_lock) moved) in operator =() argument
74 file_lock tmp(boost::move(moved)); in operator =()
/third_party/boost/libs/container/test/
Dallocator_traits_test.cpp236 bool moved() const in moved() function in copymovable
370 BOOST_TEST(c_alloc.construct_called() && !c.copymoveconstructed() && !c.moved()); in main()
381 BOOST_TEST(c_alloc.construct_called() && c.copymoveconstructed() && !c.moved()); in main()
387 BOOST_TEST(c_alloc.construct_called() && c.copymoveconstructed() && c.moved()); in main()
394 BOOST_TEST(!c.copymoveconstructed() && !c.moved()); in main()
405 BOOST_TEST(c.copymoveconstructed() && !c.moved()); in main()
411 BOOST_TEST(c.copymoveconstructed() && c.moved()); in main()
416 BOOST_TEST(c_alloc.construct_called() && !c.copymoveconstructed() && !c.moved()); in main()
422 BOOST_TEST(!c.copymoveconstructed() && !c.moved()); in main()
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_move_discards_to_top.c138 bool moved = false; in opt_move_discards_to_top_impl() local
185 moved = moved || try_move_discard(intrin); in opt_move_discards_to_top_impl()
206 if (moved) { in opt_move_discards_to_top_impl()

12345678910>>...43