Home
last modified time | relevance | path

Searched refs:my_pointer (Results 1 – 2 of 2) sorted by relevance

/oneTBB/test/tbb/
H A Dtest_collaborative_call_once.cpp67 const int* my_pointer; member
68 … move_only_type(move_only_type && other): my_pointer(other.my_pointer){ other.my_pointer=nullptr; } in move_only_type()
69 explicit move_only_type(const int* value): my_pointer(value) {} in move_only_type()
186 REQUIRE(other.my_pointer == &value); in __anon8532fc100502()
196 REQUIRE(mv.my_pointer == nullptr);
205 REQUIRE(mv.my_pointer == nullptr);
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp1198 const int* my_pointer; member
1199 … move_only_type(move_only_type && other): my_pointer(other.my_pointer){other.my_pointer=nullptr;} in move_only_type()
1200 explicit move_only_type(const int* value): my_pointer(value) {} in move_only_type()
1211 …REQUIRE_MESSAGE((v[0].my_pointer == &magic_number),"item was incorrectly moved during push_back?"); in TestPushBackMoveOnlyContainer()
1212 REQUIRE_MESSAGE(src.my_pointer == nullptr,"item was incorrectly moved during push_back?"); in TestPushBackMoveOnlyContainer()