HomeSort by relevance Sort by last modified time
    Searched refs:copied_once (Results 1 - 2 of 2) sorted by null

  /external/libcxx/test/support/
container_test_types.h 336 mutable bool copied_once; member in struct:CopyInsertable
339 explicit CopyInsertable(int val) : data(val), copied_once(false),
342 copied_once = true;
347 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true)
353 copied_once(true),
356 assert(other.copied_once == false);
357 other.copied_once = true;
360 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true),
363 assert(other.copied_once == false);
364 other.copied_once = true
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
container_test_types.h 336 mutable bool copied_once; member in struct:CopyInsertable
339 explicit CopyInsertable(int val) : data(val), copied_once(false),
342 copied_once = true;
347 CopyInsertable() : data(0), copied_once(false), constructed_under_allocator(true)
353 copied_once(true),
356 assert(other.copied_once == false);
357 other.copied_once = true;
360 CopyInsertable(CopyInsertable& other) : data(other.data), copied_once(true),
363 assert(other.copied_once == false);
364 other.copied_once = true
    [all...]

Completed in 59 milliseconds