Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dcontainer_test_types.h349 struct CopyInsertable { struct
354 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable() argument
362 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable() argument
367 CopyInsertable(CopyInsertable const& other) : data(other.data), in CopyInsertable() function
375 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable() function
382 CopyInsertable(CopyInsertable&& other) : CopyInsertable(other) {} in CopyInsertable() function
385 CopyInsertable(CopyInsertable const && other) : CopyInsertable(other) {} in CopyInsertable() argument
389 CopyInsertable(Args&&...) { in CopyInsertable() function
393 ~CopyInsertable() { in ~CopyInsertable() argument
405 bool operator==(CopyInsertable<ID> const& L, CopyInsertable<ID> const& R) { argument
[all …]