Searched refs:CopyInsertable (Results 1 – 1 of 1) sorted by relevance
349 struct CopyInsertable { struct354 explicit CopyInsertable(int val) : data(val), copied_once(false), in CopyInsertable() argument362 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true) in CopyInsertable() argument367 CopyInsertable(CopyInsertable const& other) : data(other.data), in CopyInsertable() function375 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true), in CopyInsertable() function382 CopyInsertable(CopyInsertable&& other) : CopyInsertable(other) {} in CopyInsertable() function385 CopyInsertable(CopyInsertable const && other) : CopyInsertable(other) {} in CopyInsertable() argument389 CopyInsertable(Args&&...) { in CopyInsertable() function393 ~CopyInsertable() { in ~CopyInsertable() argument405 bool operator==(CopyInsertable<ID> const& L, CopyInsertable<ID> const& R) { argument[all …]