Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dexperimental_any_helpers.h268 struct large_throws_on_copy struct
273 explicit large_throws_on_copy(int val = 0) : value(val) { in value() argument
278 large_throws_on_copy(large_throws_on_copy const &) { in large_throws_on_copy() argument
282 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() argument
287 ~large_throws_on_copy() { in ~large_throws_on_copy() argument
292 large_throws_on_copy& operator=(large_throws_on_copy const&) = delete;
293 large_throws_on_copy& operator=(large_throws_on_copy &&) = delete; argument
297 int large_throws_on_copy::count = 0; argument
Dany_helpers.h313 struct large_throws_on_copy struct
321 explicit large_throws_on_copy(int val = 0) : value(val) { in value() argument
325 explicit large_throws_on_copy(int, int val, int) : value(val) { in large_throws_on_copy() function
329 large_throws_on_copy(large_throws_on_copy const &) { in large_throws_on_copy() function
333 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() argument
338 ~large_throws_on_copy() { in ~large_throws_on_copy() argument
343 large_throws_on_copy& operator=(large_throws_on_copy const&) = delete;
344 large_throws_on_copy& operator=(large_throws_on_copy &&) = delete; argument
348 int large_throws_on_copy::count = 0; argument
349 int large_throws_on_copy::copied = 0;
[all …]
/external/libcxx/test/std/utilities/any/any.class/any.cons/
Dcopy.pass.cpp107 test_copy_throws<large_throws_on_copy>(); in main()
Dvalue.pass.cpp159 test_copy_value_throws<large_throws_on_copy>(); in main()
Din_place_type.pass.cpp195 test_in_place_type<large_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.nonmembers/
Dmake_any.pass.cpp139 test_make_any_type<large_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.class/any.assign/
Dcopy.pass.cpp204 test_copy_assign_throws<large_throws_on_copy>(); in main()
Dvalue.pass.cpp214 test_assign_throws<large_throws_on_copy>(); in main()
/external/libcxx/test/std/utilities/any/any.class/any.modifiers/
Demplace.pass.cpp283 test_emplace_type<large_throws_on_copy>(); in main()