Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dexperimental_any_helpers.h238 struct small_throws_on_copy struct
243 explicit small_throws_on_copy(int val = 0) : value(val) { in value() argument
247 small_throws_on_copy(small_throws_on_copy const &) { in small_throws_on_copy() argument
251 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() argument
256 ~small_throws_on_copy() { in ~small_throws_on_copy() argument
260 small_throws_on_copy& operator=(small_throws_on_copy const&) = delete;
261 small_throws_on_copy& operator=(small_throws_on_copy &&) = delete; argument
264 int small_throws_on_copy::count = 0;
Dany_helpers.h275 struct small_throws_on_copy struct
283 explicit small_throws_on_copy(int val = 0) : value(val) { in value() argument
286 explicit small_throws_on_copy(int, int val, int) : value(val) { in small_throws_on_copy() function
289 small_throws_on_copy(small_throws_on_copy const &) { in small_throws_on_copy() function
293 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() argument
298 ~small_throws_on_copy() { in ~small_throws_on_copy() argument
302 small_throws_on_copy& operator=(small_throws_on_copy const&) = delete;
303 small_throws_on_copy& operator=(small_throws_on_copy &&) = delete; argument
306 int small_throws_on_copy::count = 0;
307 int small_throws_on_copy::copied = 0;
[all …]
/external/libcxx/test/std/utilities/any/any.class/any.cons/
Dcopy.pass.cpp106 test_copy_throws<small_throws_on_copy>(); in main()
Dvalue.pass.cpp158 test_copy_value_throws<small_throws_on_copy>(); in main()
Din_place_type.pass.cpp194 test_in_place_type<small_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.nonmembers/
Dmake_any.pass.cpp138 test_make_any_type<small_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.class/any.assign/
Dcopy.pass.cpp203 test_copy_assign_throws<small_throws_on_copy>(); in main()
Dvalue.pass.cpp213 test_assign_throws<small_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/
Demplace.pass.cpp282 test_emplace_type<small_throws_on_copy>(); in main()