Home
last modified time | relevance | path

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

/external/sdv/vsomeip/third_party/boost/smart_ptr/test/
Dlocal_sp_test.cpp873 template<class T, class U, class D> static void test_nonempty_unique_ptr( std::unique_ptr<U, D> && … in test_nonempty_unique_ptr() function
887 test_nonempty_unique_ptr<T>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
889 test_nonempty_unique_ptr<T const>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
890 test_nonempty_unique_ptr<T volatile>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
891 test_nonempty_unique_ptr<T const volatile>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
893 test_nonempty_unique_ptr<T const>( std::unique_ptr<T const>( new T() ) ); in new_unique_ptr_test()
894 test_nonempty_unique_ptr<T volatile>( std::unique_ptr<T volatile>( new T() ) ); in new_unique_ptr_test()
895 test_nonempty_unique_ptr<T const volatile>( std::unique_ptr<T const volatile>( new T() ) ); in new_unique_ptr_test()
897 test_nonempty_unique_ptr<void>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
899 test_nonempty_unique_ptr<void const>( std::unique_ptr<T>( new T() ) ); in new_unique_ptr_test()
[all …]