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

1 2 3 4

  /external/libcxx/test/language.support/support.exception/propagation/
make_exception_ptr.pass.cpp 19 static int constructed; member in struct:A
22 A(int data = 0) : data_(data) {++constructed;}
23 ~A() {--constructed;}
24 A(const A& a) : data_(a.data_) {++constructed;}
27 int A::constructed = 0; member in class:A
40 assert(A::constructed == 1);
45 assert(A::constructed == 1);
47 assert(A::constructed == 0);
rethrow_exception.pass.cpp 19 static int constructed; member in struct:A
22 A(int data = 0) : data_(data) {++constructed;}
23 ~A() {--constructed;}
24 A(const A& a) : data_(a.data_) {++constructed;}
27 int A::constructed = 0; member in class:A
48 assert(A::constructed == 1);
53 assert(A::constructed == 1);
55 assert(A::constructed == 0);
current_exception.pass.cpp 19 static int constructed; member in struct:A
21 A() {++constructed;}
22 ~A() {--constructed;}
23 A(const A&) {++constructed;}
26 int A::constructed = 0; member in class:A
37 assert(A::constructed == 0);
43 assert(A::constructed == 1);
45 assert(A::constructed == 0);
47 assert(A::constructed == 0);
52 assert(A::constructed == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/
make_exception_ptr.pass.cpp 19 static int constructed; member in struct:A
22 A(int data = 0) : data_(data) {++constructed;}
23 ~A() {--constructed;}
24 A(const A& a) : data_(a.data_) {++constructed;}
27 int A::constructed = 0; member in class:A
40 assert(A::constructed == 1);
45 assert(A::constructed == 1);
47 assert(A::constructed == 0);
rethrow_exception.pass.cpp 19 static int constructed; member in struct:A
22 A(int data = 0) : data_(data) {++constructed;}
23 ~A() {--constructed;}
24 A(const A& a) : data_(a.data_) {++constructed;}
27 int A::constructed = 0; member in class:A
48 assert(A::constructed == 1);
53 assert(A::constructed == 1);
55 assert(A::constructed == 0);
current_exception.pass.cpp 19 static int constructed; member in struct:A
21 A() {++constructed;}
22 ~A() {--constructed;}
23 A(const A&) {++constructed;}
26 int A::constructed = 0; member in class:A
37 assert(A::constructed == 0);
43 assert(A::constructed == 1);
45 assert(A::constructed == 0);
47 assert(A::constructed == 0);
52 assert(A::constructed == 0)
    [all...]
  /external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
destroy.pass.cpp 25 static bool constructed; member in struct:B
27 B() {constructed = true;}
28 ~B() {constructed = false;}
31 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
171 A3<E>::constructed = false; member in class:A3
185 A3<F>::constructed = false; member in class:A3
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
destroy.pass.cpp 25 static bool constructed; member in struct:B
27 B() {constructed = true;}
28 ~B() {constructed = false;}
31 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
171 A3<E>::constructed = false; member in class:A3
185 A3<F>::constructed = false; member in class:A3
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/util/
scoped_ptr_unittest.cc 36 int constructed = 0; local
39 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
40 EXPECT_EQ(1, constructed);
47 EXPECT_EQ(0, constructed);
51 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
52 EXPECT_EQ(1, constructed);
55 scoper.reset(new ConDecLogger(&constructed));
56 EXPECT_EQ(1, constructed);
60 EXPECT_EQ(0, constructed);
63 scoper.reset(new ConDecLogger(&constructed));
    [all...]
  /external/chromium_org/base/memory/
scoped_ptr_unittest.cc 89 // return a temporarily constructed version of the scoper.
90 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) {
91 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed));
102 int constructed = 0; local
109 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
110 EXPECT_EQ(1, constructed);
117 EXPECT_EQ(0, constructed);
121 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
122 EXPECT_EQ(1, constructed);
125 scoper.reset(new ConDecLogger(&constructed));
173 int constructed = 0; local
285 int constructed = 0; local
382 int constructed = 0; local
427 int constructed = 0; local
461 int constructed = 0; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTaggedObjectParser.java 13 boolean constructed,
17 _constructed = constructed;
41 throw new IOException("Explicit tags must be constructed (see X.690 8.14.2)");
ASN1StreamParser.java 37 // Note: INDEF => CONSTRUCTED
39 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
55 ASN1Encodable readImplicit(boolean constructed, int tag) throws IOException
59 if (!constructed)
67 if (constructed)
84 throw new ASN1Exception("sequences must use constructed encoding (see X.690 8.9.1/8.10.1)");
86 throw new ASN1Exception("sets must use constructed encoding (see X.690 8.11.1/8.12.1)");
96 ASN1Primitive readTaggedObject(boolean constructed, int tag) throws IOException
98 if (!constructed)
100 // Note: !CONSTRUCTED => IMPLICI
    [all...]
  /external/chromium_org/base/
lazy_instance_unittest.cc 32 ++constructed;
37 static int constructed; member in class:__anon6932::SlowConstructor
42 int SlowConstructor::constructed = 0; member in class:__anon6932::SlowConstructor
90 EXPECT_EQ(0, SlowConstructor::constructed);
94 EXPECT_EQ(0, SlowConstructor::constructed);
98 EXPECT_EQ(1, SlowConstructor::constructed);
  /external/libcxx/test/support/
allocators.h 139 static bool constructed; member in class:A3
149 constructed = true;
164 template <class T> bool A3<T>::constructed = false; member in class:A3
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
allocators.h 139 static bool constructed; member in class:A3
149 constructed = true;
164 template <class T> bool A3<T>::constructed = false; member in class:A3
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 53 InlineBox(RenderObject& obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
61 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
145 bool isConstructed() { return m_bitfields.constructed(); }
310 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
312 , m_constructed(constructed)
333 ADD_BOOLEAN_BITFIELD(constructed, Constructed);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
a_bytes.c 134 int ret,r,constructed; local
148 constructed=1;
150 constructed=0;
151 ASN1_put_object(&p,constructed,ret,tag,xclass);
asn1_lib.c 198 /* class 0 is constructed
199 * constructed == 2 for indefinite length constructed */
200 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
206 i=(constructed)?V_ASN1_CONSTRUCTED:0;
223 if (constructed == 2)
262 int ASN1_object_size(int constructed, int length, int tag)
276 if (constructed == 2)
  /external/openssl/crypto/asn1/
a_bytes.c 133 int ret,r,constructed; local
147 constructed=1;
149 constructed=0;
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
asn1_lib.c 196 /* class 0 is constructed
197 * constructed == 2 for indefinite length constructed */
198 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
204 i=(constructed)?V_ASN1_CONSTRUCTED:0;
221 if (constructed == 2)
260 int ASN1_object_size(int constructed, int length, int tag)
274 if (constructed == 2)
  /external/wpa_supplicant_8/src/tls/
asn1.h 25 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
48 u8 identifier, class, constructed; member in struct:asn1_hdr
  /external/llvm/unittests/ADT/
SmallVectorTest.cpp 36 bool constructed; member in class:__anon31068::Constructable
40 Constructable() : constructed(true), value(0) {
44 Constructable(int val) : constructed(true), value(val) {
48 Constructable(const Constructable & src) : constructed(true) {
54 Constructable(Constructable && src) : constructed(true) {
61 EXPECT_TRUE(constructed);
63 constructed = false;
67 EXPECT_TRUE(constructed);
75 EXPECT_TRUE(constructed);

Completed in 833 milliseconds

1 2 3 4