Home
last modified time | relevance | path

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

/oneTBB/test/tbb/
H A Dtest_collaborative_call_once.cpp66 struct move_only_type { struct
68move_only_type(move_only_type && other): my_pointer(other.my_pointer){ other.my_pointer=nullptr; } in move_only_type() function
69 explicit move_only_type(const int* value): my_pointer(value) {} in move_only_type() function
185 auto func = [&ready, &value] (move_only_type other) { in __anon8532fc100502()
191 move_only_type mv(&value);
200 move_only_type mv(&value);
/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp1197 struct move_only_type { struct
1199move_only_type(move_only_type && other): my_pointer(other.my_pointer){other.my_pointer=nullptr;} in move_only_type() argument
1200 explicit move_only_type(const int* value): my_pointer(value) {} in move_only_type() argument
1206 using vector_t = oneapi::tbb::concurrent_vector<move_only_type >; in TestPushBackMoveOnlyContainer()
1209 move_only_type src(&magic_number); in TestPushBackMoveOnlyContainer()