Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dexperimental_any_helpers.h236 struct small_throws_on_copy struct
241 explicit small_throws_on_copy(int val = 0) : value(val) { in value() argument
245 small_throws_on_copy(small_throws_on_copy const &) { in small_throws_on_copy() function
249 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() argument
254 ~small_throws_on_copy() { in ~small_throws_on_copy() argument
258 small_throws_on_copy& operator=(small_throws_on_copy const&) = delete;
259 small_throws_on_copy& operator=(small_throws_on_copy &&) = delete; argument
262 int small_throws_on_copy::count = 0;
Dany_helpers.h272 struct small_throws_on_copy struct
280 explicit small_throws_on_copy(int val = 0) : value(val) { in value() argument
283 explicit small_throws_on_copy(int, int val, int) : value(val) { in small_throws_on_copy() argument
286 small_throws_on_copy(small_throws_on_copy const &) { in small_throws_on_copy() argument
290 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() argument
295 ~small_throws_on_copy() { in ~small_throws_on_copy() argument
299 small_throws_on_copy& operator=(small_throws_on_copy const&) = delete;
300 small_throws_on_copy& operator=(small_throws_on_copy &&) = delete; argument
303 int small_throws_on_copy::count = 0;
304 int small_throws_on_copy::copied = 0;
[all …]
/external/libcxx/test/std/utilities/any/any.class/any.cons/
Dcopy.pass.cpp98 test_copy_throws<small_throws_on_copy>(); in main()
Dvalue.pass.cpp150 test_copy_value_throws<small_throws_on_copy>(); in main()
Din_place_type.pass.cpp186 test_in_place_type<small_throws_on_copy>(); in main()
/external/libcxx/test/std/experimental/any/any.class/any.cons/
Dvalue.pass.cpp113 test_copy_value_throws<small_throws_on_copy>(); in main()
Dcopy.pass.cpp98 test_copy_throws<small_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.nonmembers/
Dmake_any.pass.cpp130 test_make_any_type<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()
/external/libcxx/test/std/utilities/any/any.class/any.assign/
Dcopy.pass.cpp195 test_copy_assign_throws<small_throws_on_copy>(); in main()
Dvalue.pass.cpp205 test_assign_throws<small_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/
Demplace.pass.cpp252 test_emplace_type<small_throws_on_copy>(); in main()