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

1 2 3 4 5 6 7 8 91011>>

  /external/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);
  /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/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/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/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);
  /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.
  /external/chromium_org/content/browser/service_worker/
service_worker_disk_cache.h 26 // Should only be constructed by the storage class.
36 // Should only be constructed by the storage class.
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/
README 2 The entire libs/ directory is built and constructed automatically with
  /external/chromium_org/content/test/data/webcrypto/
aes_ctr.json 31 // 32-bit counter wrap-around (manually constructed).
43 // 1-bit counter wrap-around (manually constructed).
54 // 4-bit counter wrap-around (manually constructed).
74 // 128-bit counter wrap-around (manually 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 924 milliseconds

1 2 3 4 5 6 7 8 91011>>