Home
last modified time | relevance | path

Searched defs:CopyInsertable (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/
H A Dcontainer_test_types.h348 struct CopyInsertable { struct
353 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable() function
361 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable() argument
366 CopyInsertable(CopyInsertable const& other) : data(other.data), in CopyInsertable() argument
374 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable() argument
381 CopyInsertable(CopyInsertable&& other) : CopyInsertable(other) {} in CopyInsertable() argument
384 CopyInsertable(CopyInsertable const && other) : CopyInsertable(other) {} in CopyInsertable() function
388 CopyInsertable(Args&&...) { in CopyInsertable() argument
392 ~CopyInsertable() { in ~CopyInsertable() argument
404 bool operator==(CopyInsertable<ID> const& L, CopyInsertable<ID> const& R) { argument