Home
last modified time | relevance | path

Searched defs:CompleteMovableStruct (Results 1 – 1 of 1) sorted by relevance

/external/stlport/test/unit/
Dmvctor_traits_test.cpp30 struct CompleteMovableStruct { struct
31 CompleteMovableStruct() { ++nb_dft_construct_call; } in CompleteMovableStruct() argument
32 CompleteMovableStruct(CompleteMovableStruct const&) { ++nb_cpy_construct_call; } in CompleteMovableStruct() argument
34 CompleteMovableStruct(__move_source<CompleteMovableStruct>) { ++nb_mv_construct_call; } in CompleteMovableStruct() function
36 ~CompleteMovableStruct() { ++nb_destruct_call; } in ~CompleteMovableStruct() argument
38 CompleteMovableStruct& operator = (const CompleteMovableStruct&) { in operator =() argument
58 size_t CompleteMovableStruct::nb_dft_construct_call = 0; argument