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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/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);
  /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.
  /external/libcxx/test/std/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Encodable.java 9 * Return an object, possibly constructed, of ASN.1 primitives
DERApplicationSpecific.java 22 * the data does not represent a constructed object.
35 * Create an application specific object with a tagging of explicit/constructed.
49 * Create an application specific object with the tagging style given by the value of constructed.
51 * @param constructed true if the object is constructed.
56 boolean constructed,
61 super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, object));
83 * Create an application specific object which is marked as constructed
119 classBits |= BERTags.CONSTRUCTED;
    [all...]
BERApplicationSpecific.java 21 * Create an application specific object with a tagging of explicit/constructed.
35 * Create an application specific object with the tagging style given by the value of constructed.
37 * @param constructed true if the object is constructed.
42 boolean constructed,
47 super(constructed || object.toASN1Primitive().isConstructed(), tag, getEncoding(constructed, object));
69 * Create an application specific object which is marked as constructed
105 classBits |= BERTags.CONSTRUCTED;
BERTaggedObjectParser.java 16 boolean constructed,
20 _constructed = constructed;
26 * Return true if this tagged object is marked as constructed.
28 * @return true if constructed, false otherwise.
62 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);
  /external/libchrome/base/memory/
scoped_ptr_unittest.cc 97 // return a temporarily constructed version of the scoper.
98 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) {
99 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed));
105 int constructed = 0; local
112 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
113 EXPECT_EQ(1, constructed);
120 EXPECT_EQ(0, constructed);
124 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
125 EXPECT_EQ(1, constructed);
128 scoper.reset(new ConDecLogger(&constructed));
176 int constructed = 0; local
289 int constructed = 0; local
386 int constructed = 0; local
437 int constructed = 0; local
    [all...]
  /external/libweave/third_party/chromium/base/memory/
scoped_ptr_unittest.cc 98 // return a temporarily constructed version of the scoper.
99 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) {
100 return scoped_ptr<ConDecLogger>(new ConDecLogger(constructed));
106 int constructed = 0; local
113 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
114 EXPECT_EQ(1, constructed);
121 EXPECT_EQ(0, constructed);
125 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed));
126 EXPECT_EQ(1, constructed);
129 scoper.reset(new ConDecLogger(&constructed));
177 int constructed = 0; local
290 int constructed = 0; local
387 int constructed = 0; local
438 int constructed = 0; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/
TODO 2 * Come up with simpler API for deeply nested constructed objects
29 * simpler API to constructed objects: value init, recursive
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/
README 2 The entire libs/ directory is built and constructed automatically with
  /external/libcxx/test/support/
tracked_value.h 7 enum State { CONSTRUCTED, MOVED_FROM, DESTROYED };
10 TrackedValue() : state(State::CONSTRUCTED) {}
12 TrackedValue(TrackedValue const& t) : state(State::CONSTRUCTED) {
18 TrackedValue(TrackedValue&& t) : state(State::CONSTRUCTED) {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Object.java 13 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed, int length) {
14 this(tag, asn1Class, constructed, length, null);
17 protected Asn1Object(int tag, Asn1Class asn1Class, boolean constructed,
21 mConstructed = 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

Completed in 1184 milliseconds

1 2 3 4 5 6 7 8 91011>>