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

  /external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
destroy_n.pass.cpp 24 struct Counted {
27 Counted() { ++count; }
28 Counted(Counted const&) { ++count; }
29 ~Counted() { --count; }
30 friend void operator&(Counted) = delete;
32 int Counted::count = 0;
36 using It = forward_iterator<Counted*>;
38 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
destroy.pass.cpp 24 struct Counted {
27 Counted() { ++count; }
28 Counted(Counted const&) { ++count; }
29 ~Counted() { --count; }
30 friend void operator&(Counted) = delete;
32 int Counted::count = 0;
36 using It = forward_iterator<Counted*>;
38 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
destroy_at.pass.cpp 21 struct Counted {
24 Counted() { ++count; }
25 Counted(Counted const&) { ++count; }
26 ~Counted() { --count; }
27 friend void operator&(Counted) = delete;
29 int Counted::count = 0;
48 void* mem1 = std::malloc(sizeof(Counted));
49 void* mem2 = std::malloc(sizeof(Counted));
51 assert(Counted::count == 0)
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/
uninitialized_default_construct.pass.cpp 24 struct Counted {
28 explicit Counted() { ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { --count; }
31 friend void operator&(Counted) = delete;
33 int Counted::count = 0;
34 int Counted::constructed = 0;
77 using It = forward_iterator<Counted*>;
79 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
uninitialized_default_construct_n.pass.cpp 24 struct Counted {
28 explicit Counted() { ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { assert(count > 0); --count; }
31 friend void operator&(Counted) = delete;
33 int Counted::count = 0;
34 int Counted::constructed = 0;
76 using It = forward_iterator<Counted*>;
78 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/
uninitialized_value_construct.pass.cpp 24 struct Counted {
28 explicit Counted() { ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { assert(count > 0); --count; }
31 friend void operator&(Counted) = delete;
33 int Counted::count = 0;
34 int Counted::constructed = 0;
76 using It = forward_iterator<Counted*>;
78 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
uninitialized_value_construct_n.pass.cpp 24 struct Counted {
28 explicit Counted() { ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { --count; }
31 friend void operator&(Counted) = delete;
33 int Counted::count = 0;
34 int Counted::constructed = 0;
77 using It = forward_iterator<Counted*>;
79 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/
uninitialized_move.pass.cpp 24 struct Counted {
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { assert(count > 0); --count; }
31 friend void operator&(Counted) = delete;
34 int Counted::count = 0;
35 int Counted::constructed = 0;
84 using FIt = forward_iterator<Counted*>;
87 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
uninitialized_move_n.pass.cpp 24 struct Counted {
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
29 Counted(Counted const&) { assert(false); }
30 ~Counted() { assert(count > 0); --count; }
31 friend void operator&(Counted) = delete;
34 int Counted::count = 0;
35 int Counted::constructed = 0;
84 using FIt = forward_iterator<Counted*>;
87 alignas(Counted) char pool[sizeof(Counted)*N] = {}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_descr.py     [all...]
  /external/python/cpython2/Lib/test/
test_descr.py     [all...]
  /external/python/cpython3/Lib/test/
test_descr.py     [all...]

Completed in 1580 milliseconds