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

1 2 3 4

  /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...]
  /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/base/memory/
scoped_ptr_unittest.cc 29 int constructed = 0; local
32 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
33 EXPECT_EQ(1, constructed);
40 EXPECT_EQ(0, constructed);
44 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
45 EXPECT_EQ(1, constructed);
48 scoper.reset(new ConDecLogger(&constructed));
49 EXPECT_EQ(1, constructed);
53 EXPECT_EQ(0, constructed);
56 scoper.reset(new ConDecLogger(&constructed));
98 int constructed = 0; local
    [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
par_loop.h 80 bool* constructed; local
92 constructed = new bool[num_threads];
108 constructed[iam] = true;
111 constructed[iam] = false;
120 if (constructed[i])
128 delete[] constructed;
  /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/base/
lazy_instance_unittest.cc 31 ++constructed;
36 static int constructed; member in class:__anon4099::SlowConstructor
41 int SlowConstructor::constructed = 0; member in class:__anon4099::SlowConstructor
88 EXPECT_EQ(0, SlowConstructor::constructed);
92 EXPECT_EQ(0, SlowConstructor::constructed);
96 EXPECT_EQ(1, SlowConstructor::constructed);
  /external/chromium_org/base/
lazy_instance_unittest.cc 32 ++constructed;
37 static int constructed; member in class:__anon6172::SlowConstructor
42 int SlowConstructor::constructed = 0; member in class:__anon6172::SlowConstructor
90 EXPECT_EQ(0, SlowConstructor::constructed);
94 EXPECT_EQ(0, SlowConstructor::constructed);
98 EXPECT_EQ(1, SlowConstructor::constructed);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/
allocators.h 130 static bool constructed; member in class:A3
140 constructed = true;
155 template <class T> bool A3<T>::constructed = false; member in class:A3
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
allocators.h 130 static bool constructed; member in class:A3
140 constructed = true;
155 template <class T> bool A3<T>::constructed = false; member in class:A3
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 49 InlineBox(RenderObject* obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed,
57 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
142 bool isConstructed() { return m_bitfields.constructed(); }
319 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
321 , m_constructed(constructed)
342 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/v8/test/mjsunit/bugs/
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/openssl/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 193 /* class 0 is constructed
194 * constructed == 2 for indefinite length constructed */
195 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
201 i=(constructed)?V_ASN1_CONSTRUCTED:0;
218 if (constructed == 2)
257 int ASN1_object_size(int constructed, int length, int tag)
271 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 193 /* class 0 is constructed
194 * constructed == 2 for indefinite length constructed */
195 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
201 i=(constructed)?V_ASN1_CONSTRUCTED:0;
218 if (constructed == 2)
257 int ASN1_object_size(int constructed, int length, int tag)
271 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/chromium_org/v8/test/mjsunit/
error-accessors.js 32 // message is constructed using the constructor.
43 // message is constructed by the runtime.
object-literal.js 182 // Function property, constructed.
183 function construct() { this.constructed = true; }
187 assertTrue(vo.constructed);
  /external/v8/test/mjsunit/
object-literal.js 182 // Function property, constructed.
183 function construct() { this.constructed = true; }
187 assertTrue(vo.constructed);

Completed in 2447 milliseconds

1 2 3 4