Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dcontainer_test_types.h334 struct CopyInsertable { struct
339 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable() argument
347 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable() function
352 CopyInsertable(CopyInsertable const& other) : data(other.data), in CopyInsertable() function
360 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable() argument
367 CopyInsertable(CopyInsertable&& other) : CopyInsertable(other) {} in CopyInsertable() argument
370 CopyInsertable(CopyInsertable const && other) : CopyInsertable(other) {} in CopyInsertable() argument
374 CopyInsertable(Args&&...) { in CopyInsertable() argument
378 ~CopyInsertable() { in ~CopyInsertable() argument
390 bool operator==(CopyInsertable<ID> const& L, CopyInsertable<ID> const& R) { argument