Home
last modified time | relevance | path

Searched refs:constructed (Results 1 – 25 of 150) sorted by relevance

123456

/external/libcxx/test/std/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp19 static int constructed; member
21 A() {++constructed;} in A()
22 ~A() {--constructed;} in ~A()
23 A(const A&) {++constructed;} in A()
26 int A::constructed = 0; member in A
37 assert(A::constructed == 0); in main()
43 assert(A::constructed == 1); in main()
45 assert(A::constructed == 0); in main()
47 assert(A::constructed == 0); in main()
52 assert(A::constructed == 0); in main()
[all …]
Drethrow_exception.pass.cpp19 static int constructed; member
22 A(int data = 0) : data_(data) {++constructed;} in A()
23 ~A() {--constructed;} in ~A()
24 A(const A& a) : data_(a.data_) {++constructed;} in A()
27 int A::constructed = 0; member in A
48 assert(A::constructed == 1); in main()
53 assert(A::constructed == 1); in main()
55 assert(A::constructed == 0); in main()
Dmake_exception_ptr.pass.cpp19 static int constructed; member
22 A(int data = 0) : data_(data) {++constructed;} in A()
23 ~A() {--constructed;} in ~A()
24 A(const A& a) : data_(a.data_) {++constructed;} in A()
27 int A::constructed = 0; member in A
40 assert(A::constructed == 1); in main()
45 assert(A::constructed == 1); in main()
47 assert(A::constructed == 0); in main()
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
Dconstruct.pass.cpp27 static bool constructed; member
35 constructed = true; in B()
39 bool B::constructed = false; member in B
43 static bool constructed; member
51 constructed = true; in C()
55 bool C::constructed = false; member in C
59 static bool constructed; member
68 constructed = true; in D()
72 bool D::constructed = false; member in D
76 static bool constructed; member
[all …]
Ddestroy.pass.cpp25 static bool constructed; member
27 B() {constructed = true;} in B()
28 ~B() {constructed = false;} in ~B()
31 bool B::constructed = false; member in B
43 assert(!S::constructed); in main()
45 assert(S::constructed); in main()
47 assert(!S::constructed); in main()
56 assert(!S::constructed); in main()
57 assert(!A3<S>::constructed); in main()
60 assert(S::constructed); in main()
[all …]
/external/libweave/third_party/chromium/base/memory/
Dscoped_ptr_unittest.cc99 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) { in TestReturnOfType() argument
100 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed)); in TestReturnOfType()
106 int constructed = 0; in TEST() local
113 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST()
114 EXPECT_EQ(1, constructed); in TEST()
121 EXPECT_EQ(0, constructed); in TEST()
125 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST()
126 EXPECT_EQ(1, constructed); in TEST()
129 scoper.reset(new ConDecLogger(&constructed)); in TEST()
130 EXPECT_EQ(1, constructed); in TEST()
[all …]
/external/libchrome/base/memory/
Dscoped_ptr_unittest.cc98 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) { in TestReturnOfType() argument
99 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed)); in TestReturnOfType()
105 int constructed = 0; in TEST() local
112 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST()
113 EXPECT_EQ(1, constructed); in TEST()
120 EXPECT_EQ(0, constructed); in TEST()
124 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST()
125 EXPECT_EQ(1, constructed); in TEST()
128 scoper.reset(new ConDecLogger(&constructed)); in TEST()
129 EXPECT_EQ(1, constructed); in TEST()
[all …]
/external/libchrome/base/
Dlazy_instance_unittest.cc34 ++constructed; in SlowConstructor()
39 static int constructed; member in __anona5237c660111::SlowConstructor
44 int SlowConstructor::constructed = 0; member in __anona5237c660111::SlowConstructor
92 EXPECT_EQ(0, SlowConstructor::constructed); in TEST()
96 EXPECT_EQ(0, SlowConstructor::constructed); in TEST()
100 EXPECT_EQ(1, SlowConstructor::constructed); in TEST()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1StreamParser.java58 ASN1Encodable readImplicit(boolean constructed, int tag) throws IOException in readImplicit() argument
62 if (!constructed) in readImplicit()
70 if (constructed) in readImplicit()
98 ASN1Primitive readTaggedObject(boolean constructed, int tag) throws IOException in readTaggedObject() argument
100 if (!constructed) in readTaggedObject()
DDERApplicationSpecific.java56 boolean constructed, in DERApplicationSpecific() argument
61 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in DERApplicationSpecific()
DBERApplicationSpecific.java42 boolean constructed, in BERApplicationSpecific() argument
47 …super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, objec… in BERApplicationSpecific()
DBERTaggedObjectParser.java16 boolean constructed, in BERTaggedObjectParser() argument
20 _constructed = constructed; in BERTaggedObjectParser()
/external/boringssl/src/crypto/asn1/
Da_bytes.c136 int ret,r,constructed; in i2d_ASN1_bytes() local
150 constructed=1; in i2d_ASN1_bytes()
152 constructed=0; in i2d_ASN1_bytes()
153 ASN1_put_object(&p,constructed,ret,tag,xclass); in i2d_ASN1_bytes()
Dasn1_lib.c228 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, in ASN1_put_object() argument
234 i=(constructed)?V_ASN1_CONSTRUCTED:0; in ASN1_put_object()
251 if (constructed == 2) in ASN1_put_object()
290 int ASN1_object_size(int constructed, int length, int tag) in ASN1_object_size() argument
304 if (constructed == 2) in ASN1_object_size()
Dasn1_par.c66 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
70 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, in asn1_print_info() argument
77 if (constructed & V_ASN1_CONSTRUCTED) in asn1_print_info()
/external/deqp/doc/testspecs/GLES2/
Dfunctional.texture.teximage.txt48 Reference texture object is constructed by applying reference versions of the
51 Finally both the constructed texture is rendered using a simple quad and the
54 verified. If mipmaps were constructed, texture is rendered multiple times
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/
DTODO2 * Come up with simpler API for deeply nested constructed objects
29 * simpler API to constructed objects: value init, recursive
/external/llvm/unittests/ADT/
DSmallVectorTest.cpp37 bool constructed; member in __anon27179be20111::Constructable
41 Constructable() : constructed(true), value(0) { in Constructable()
45 Constructable(int val) : constructed(true), value(val) { in Constructable()
49 Constructable(const Constructable & src) : constructed(true) { in Constructable()
55 Constructable(Constructable && src) : constructed(true) { in Constructable()
62 EXPECT_TRUE(constructed); in ~Constructable()
64 constructed = false; in ~Constructable()
68 EXPECT_TRUE(constructed); in operator =()
76 EXPECT_TRUE(constructed); in operator =()
/external/libcxx/test/support/
Dallocators.h141 static bool constructed; variable
151 constructed = true; in construct()
166 template <class T> bool A3<T>::constructed = false;
/external/v8/test/mjsunit/
Dobject-literal.js183 function construct() { this.constructed = true; }
187 assertTrue(vo.constructed);
/external/iptables/extensions/
Dlibxt_NETMAP.man7 Network address to map to. The resulting address will be constructed in the
/external/wpa_supplicant_8/src/tls/
Dasn1.h50 u8 identifier, class, constructed; member
/external/curl/lib/
Dx509asn1.h85 bool constructed; /* Element is constructed. */ member
/external/webrtc/webrtc/base/
Dcallback.h.pump22 // object. Default-constructed callbacks are "empty," and executing an empty
24 // a default-constructed callback.
/external/llvm/test/Other/
Dcan-execute.txt8 The PATH is constructed such that 'not' will first find a directory named

123456