/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/ |
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...] |
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);
|
/art/test/061-out-of-memory/ |
info.txt | 1 Tests the various ways that an OutOfMemoryError can be constructed and thrown.
|
/dalvik/tests/061-out-of-memory/ |
info.txt | 1 Tests the various ways that an OutOfMemoryError can be constructed and thrown.
|
/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/third_party/libaddressinput/chromium/cpp/test/util/ |
scoped_ptr_unittest.cc | 34 int constructed = 0; local 37 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); 38 EXPECT_EQ(1, constructed); 45 EXPECT_EQ(0, constructed); 49 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); 50 EXPECT_EQ(1, constructed); 53 scoper.reset(new ConDecLogger(&constructed)); 54 EXPECT_EQ(1, constructed); 58 EXPECT_EQ(0, constructed); 61 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...] |
/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...] |
/art/test/030-bad-finalizer/ |
expected.txt | 0 Constructed object.
|
/dalvik/tests/030-bad-finalizer/ |
expected.txt | 0 Constructed object.
|
/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)");
|
DERTaggedObject.java | 90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 97 // need to mark constructed types... 102 flags = BERTags.CONSTRUCTED | BERTags.TAGGED; 115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
|
DLTaggedObject.java | 84 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 91 // need to mark constructed types... 96 flags = BERTags.CONSTRUCTED | BERTags.TAGGED; 109 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
|
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...] |
BERGenerator.java | 55 writeHdr(tagNum | BERTags.CONSTRUCTED); 60 if ((tag & BERTags.CONSTRUCTED) != 0) 62 writeHdr(tagNum | BERTags.CONSTRUCTED);
|
DERSequence.java | 76 * As DER requires the constructed, definite-length model to 79 * we also have to specify CONSTRUCTED, and the objects length. 88 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
|
DLSequence.java | 76 * As DL requires the constructed, definite-length model to 79 * we also have to specify CONSTRUCTED, and the objects length. 88 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED);
|
DLSet.java | 79 * As DL requires the constructed, definite-length model to 82 * we also have to specify CONSTRUCTED, and the objects length. 91 out.write(BERTags.SET | BERTags.CONSTRUCTED);
|
/external/chromium_org/android_webview/browser/net/ |
init_native_callback.h | 23 // Called lazily when the job factory is being constructed. 27 // Called lazily when the job factory is being constructed.
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
dtor1.cpp | 3 // Test that a fully-constructed base is destroyed before transferring
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
dtor1.cpp | 3 // Test that a fully-constructed base is destroyed before transferring
|
/external/chromium/base/ |
lazy_instance_unittest.cc | 31 ++constructed; 36 static int constructed; member in class:__anon4102::SlowConstructor 41 int SlowConstructor::constructed = 0; member in class:__anon4102::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:__anon6212::SlowConstructor 42 int SlowConstructor::constructed = 0; member in class:__anon6212::SlowConstructor 90 EXPECT_EQ(0, SlowConstructor::constructed); 94 EXPECT_EQ(0, SlowConstructor::constructed); 98 EXPECT_EQ(1, SlowConstructor::constructed);
|