HomeSort by relevance Sort by last modified time
    Searched refs:constructed (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libcxx/test/std/language.support/support.exception/propagation/
current_exception.pass.cpp 24 static int constructed; member in struct:A
26 A() {++constructed;}
27 ~A() {--constructed;}
28 A(const A&) {++constructed;}
31 int A::constructed = 0; member in class:A
42 assert(A::constructed == 0);
48 assert(A::constructed == 1);
50 assert(A::constructed == 0);
52 assert(A::constructed == 0);
57 assert(A::constructed == 0)
    [all...]
make_exception_ptr.pass.cpp 20 static int constructed; member in struct:A
23 A(int data = 0) : data_(data) {++constructed;}
24 ~A() {--constructed;}
25 A(const A& a) : data_(a.data_) {++constructed;}
28 int A::constructed = 0; member in class:A
42 assert(A::constructed == 1);
45 assert(A::constructed == 2);
51 assert(A::constructed == 1);
53 assert(A::constructed == 0);
55 assert(A::constructed == 0)
    [all...]
rethrow_exception.pass.cpp 20 static int constructed; member in struct:A
23 A(int data = 0) : data_(data) {++constructed;}
24 ~A() {--constructed;}
25 A(const A& a) : data_(a.data_) {++constructed;}
28 int A::constructed = 0; member in class:A
50 assert(A::constructed == 1);
53 assert(A::constructed == 2);
59 assert(A::constructed == 1);
61 assert(A::constructed == 0);
63 assert(A::constructed == 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.exception/propagation/
current_exception.pass.cpp 24 static int constructed; member in struct:A
26 A() {++constructed;}
27 ~A() {--constructed;}
28 A(const A&) {++constructed;}
31 int A::constructed = 0; member in class:A
42 assert(A::constructed == 0);
48 assert(A::constructed == 1);
50 assert(A::constructed == 0);
52 assert(A::constructed == 0);
57 assert(A::constructed == 0)
    [all...]
make_exception_ptr.pass.cpp 20 static int constructed; member in struct:A
23 A(int data = 0) : data_(data) {++constructed;}
24 ~A() {--constructed;}
25 A(const A& a) : data_(a.data_) {++constructed;}
28 int A::constructed = 0; member in class:A
42 assert(A::constructed == 1);
45 assert(A::constructed == 2);
51 assert(A::constructed == 1);
53 assert(A::constructed == 0);
55 assert(A::constructed == 0)
    [all...]
rethrow_exception.pass.cpp 20 static int constructed; member in struct:A
23 A(int data = 0) : data_(data) {++constructed;}
24 ~A() {--constructed;}
25 A(const A& a) : data_(a.data_) {++constructed;}
28 int A::constructed = 0; member in class:A
50 assert(A::constructed == 1);
53 assert(A::constructed == 2);
59 assert(A::constructed == 1);
61 assert(A::constructed == 0);
63 assert(A::constructed == 0)
    [all...]
  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
destroy.pass.cpp 27 static bool constructed; member in struct:B
29 B() {constructed = true;}
30 ~B() {constructed = false;}
33 bool B::constructed = false; member in class:B
43 assert(!S::constructed);
45 assert(S::constructed);
47 assert(!S::constructed);
56 assert(!S::constructed);
57 assert(!A3<S>::constructed);
60 assert(S::constructed);
    [all...]
construct.pass.cpp 27 static bool constructed; member in struct:B
35 constructed = true;
39 bool B::constructed = false; member in class:B
43 static bool constructed; member in struct:C
51 constructed = true;
55 bool C::constructed = false; member in class:C
59 static bool constructed; member in struct:D
68 constructed = true;
72 bool D::constructed = false; member in class:D
76 static bool constructed; member in struct:E
89 bool E::constructed = false; member in class:E
93 static bool constructed; member in struct:F
112 bool F::constructed = false; member in class:F
168 A3<E>::constructed = false; member in class:A3
182 A3<F>::constructed = false; member in class:A3
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
destroy.pass.cpp 27 static bool constructed; member in struct:B
29 B() {constructed = true;}
30 ~B() {constructed = false;}
33 bool B::constructed = false; member in class:B
43 assert(!S::constructed);
45 assert(S::constructed);
47 assert(!S::constructed);
56 assert(!S::constructed);
57 assert(!A3<S>::constructed);
60 assert(S::constructed);
    [all...]
construct.pass.cpp 27 static bool constructed; member in struct:B
35 constructed = true;
39 bool B::constructed = false; member in class:B
43 static bool constructed; member in struct:C
51 constructed = true;
55 bool C::constructed = false; member in class:C
59 static bool constructed; member in struct:D
68 constructed = true;
72 bool D::constructed = false; member in class:D
76 static bool constructed; member in struct:E
89 bool E::constructed = false; member in class:E
93 static bool constructed; member in struct:F
112 bool F::constructed = false; member in class:F
168 A3<E>::constructed = false; member in class:A3
182 A3<F>::constructed = false; member in class:A3
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/
uninitialized_default_construct.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
71 assert(ThrowsCounted::constructed == 4); // forth construction throws
83 assert(Counted::constructed == 1)
    [all...]
uninitialized_default_construct_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
70 assert(ThrowsCounted::constructed == 4); // forth construction throws
83 assert(Counted::constructed == 1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/
uninitialized_default_construct.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
71 assert(ThrowsCounted::constructed == 4); // forth construction throws
83 assert(Counted::constructed == 1)
    [all...]
uninitialized_default_construct_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
70 assert(ThrowsCounted::constructed == 4); // forth construction throws
83 assert(Counted::constructed == 1)
    [all...]
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_pair.pass.cpp 30 int constructed = 0; variable
34 default_constructible() : x(42) { ++constructed; }
48 assert(constructed == 2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_pair.pass.cpp 30 int constructed = 0; variable
34 default_constructible() : x(42) { ++constructed; }
48 assert(constructed == 2);
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/
uninitialized_value_construct.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
70 assert(ThrowsCounted::constructed == 4); // forth construction throws
82 assert(Counted::constructed == 1)
    [all...]
uninitialized_value_construct_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
38 static int constructed; member in struct:ThrowsCounted
40 static void reset() { throw_after = count = constructed = 0; }
42 ++constructed;
53 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
69 assert(ThrowsCounted::constructed == 4); // forth construction throws
84 assert(Counted::constructed == 1)
    [all...]
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/
uninitialized_move.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
35 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
55 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
72 assert(ThrowsCounted::constructed == 4); // forth construction throws
91 assert(Counted::constructed == 1)
    [all...]
uninitialized_move_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
35 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
55 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
72 assert(ThrowsCounted::constructed == 4); // forth construction throws
92 assert(Counted::constructed == 1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/
uninitialized_value_construct.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
54 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
70 assert(ThrowsCounted::constructed == 4); // forth construction throws
82 assert(Counted::constructed == 1)
    [all...]
uninitialized_value_construct_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted() { ++count; ++constructed; }
34 int Counted::constructed = 0; member in class:Counted
38 static int constructed; member in struct:ThrowsCounted
40 static void reset() { throw_after = count = constructed = 0; }
42 ++constructed;
53 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
69 assert(ThrowsCounted::constructed == 4); // forth construction throws
84 assert(Counted::constructed == 1)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/uninitialized.move/
uninitialized_move.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
35 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
55 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
72 assert(ThrowsCounted::constructed == 4); // forth construction throws
91 assert(Counted::constructed == 1)
    [all...]
uninitialized_move_n.pass.cpp 26 static int constructed; member in struct:Counted
27 static void reset() { count = constructed = 0; }
28 explicit Counted(int&& x) : value(x) { x = 0; ++count; ++constructed; }
35 int Counted::constructed = 0; member in class:Counted
39 static int constructed; member in struct:ThrowsCounted
41 static void reset() { throw_after = count = constructed = 0; }
43 ++constructed;
55 int ThrowsCounted::constructed = 0; member in class:ThrowsCounted
72 assert(ThrowsCounted::constructed == 4); // forth construction throws
92 assert(Counted::constructed == 1)
    [all...]
  /external/tensorflow/tensorflow/core/lib/core/
refcount_test.cc 24 static int constructed = 0; member in namespace:tensorflow::core::__anon39967
29 MyRef() { constructed++; }
36 constructed = 0;
43 ASSERT_EQ(1, constructed);
46 ASSERT_EQ(1, constructed);
52 ASSERT_EQ(1, constructed);
78 ASSERT_EQ(1, constructed);

Completed in 782 milliseconds

1 2 3 4 5 6 7 8 9