Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dany_helpers.h228 struct small_throws_on_copy struct
233 explicit small_throws_on_copy(int val = 0) : value(val) { in value() argument
237 small_throws_on_copy(small_throws_on_copy const &) { in small_throws_on_copy() function
241 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() argument
246 ~small_throws_on_copy() { in ~small_throws_on_copy() argument
250 small_throws_on_copy& operator=(small_throws_on_copy const&) = delete;
251 small_throws_on_copy& operator=(small_throws_on_copy &&) = delete; argument
254 int small_throws_on_copy::count = 0;
/external/libcxx/test/std/experimental/any/any.class/any.cons/
Dcopy.pass.cpp98 test_copy_throws<small_throws_on_copy>(); in main()
Dvalue.pass.cpp113 test_copy_value_throws<small_throws_on_copy>(); in main()
/external/libcxx/test/std/experimental/any/any.class/any.assign/
Dvalue.pass.cpp174 test_assign_throws<small_throws_on_copy>(); in main()
Dcopy.pass.cpp195 test_copy_assign_throws<small_throws_on_copy>(); in main()