Searched defs:constructed (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/util/
H A Dscoped_ptr_unittest.cc34 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1StreamParser.java39 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
55 ASN1Encodable readImplicit(boolean constructed, int tag) throws IOException argument
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 argument
98 if (!constructed)
183 // TODO There are other tags that may be constructed (e.g. BIT_STRING)
H A DBERTaggedObjectParser.java13 boolean constructed,
17 _constructed = constructed;
41 throw new IOException("Explicit tags must be constructed (see X.690 8.14.2)");
12 BERTaggedObjectParser( boolean constructed, int tagNumber, ASN1StreamParser parser) argument
/external/chromium/base/memory/
H A Dscoped_ptr_unittest.cc29 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/base/
H A Dlazy_instance_unittest.cc31 ++constructed;
36 static int constructed; member in class:__anon1696::SlowConstructor
41 int SlowConstructor::constructed = 0; member in class:__anon1696::SlowConstructor
88 EXPECT_EQ(0, SlowConstructor::constructed);
92 EXPECT_EQ(0, SlowConstructor::constructed);
96 EXPECT_EQ(1, SlowConstructor::constructed);
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_bytes.c133 int ret,r,constructed; local
147 constructed=1;
149 constructed=0;
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
H A Dasn1_par.c65 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, argument
76 if (constructed & V_ASN1_CONSTRUCTED)
148 /* if j == 0x21 it is a constructed indefinite length object */
H A Dasn1_lib.c193 /* 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, argument
201 i=(constructed)?V_ASN1_CONSTRUCTED:0;
218 if (constructed == 2)
257 int ASN1_object_size(int constructed, int length, int tag) argument
271 if (constructed == 2)
/external/openssl/crypto/asn1/
H A Da_bytes.c133 int ret,r,constructed; local
147 constructed=1;
149 constructed=0;
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
H A Dasn1_par.c65 static int asn1_print_info(BIO *bp, int tag, int xclass,int constructed,
69 static int asn1_print_info(BIO *bp, int tag, int xclass, int constructed, argument
76 if (constructed & V_ASN1_CONSTRUCTED)
148 /* if j == 0x21 it is a constructed indefinite length object */
H A Dasn1_lib.c193 /* 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, argument
201 i=(constructed)?V_ASN1_CONSTRUCTED:0;
218 if (constructed == 2)
257 int ASN1_object_size(int constructed, int length, int tag) argument
271 if (constructed == 2)
/external/chromium_org/base/
H A Dlazy_instance_unittest.cc32 ++constructed;
37 static int constructed; member in class:__anon3806::SlowConstructor
42 int SlowConstructor::constructed = 0; member in class:__anon3806::SlowConstructor
90 EXPECT_EQ(0, SlowConstructor::constructed);
94 EXPECT_EQ(0, SlowConstructor::constructed);
98 EXPECT_EQ(1, SlowConstructor::constructed);
/external/chromium_org/base/memory/
H A Dscoped_ptr_unittest.cc89 // return a temporarily constructed version of the scoper.
90 scoped_ptr<ConDecLogger> TestReturnOfType(int* constructed) { argument
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/wpa_supplicant_8/hostapd/src/tls/
H A Dasn1.h25 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
48 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/wpa_supplicant_8/src/tls/
H A Dasn1.h25 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
48 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dasn1.h25 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
48 u8 identifier, class, constructed; member in struct:asn1_hdr
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineBox.h49 InlineBox(RenderObject* obj, FloatPoint topLeft, float logicalWidth, bool firstLine, bool constructed, argument
57 , m_bitfields(firstLine, constructed, dirty, extracted, isHorizontal)
141 bool isConstructed() { return m_bitfields.constructed(); }
306 InlineBoxBitfields(bool firstLine = false, bool constructed = false, bool dirty = false, bool extracted = false, bool isHorizontal = true)
308 , m_constructed(constructed)
329 ADD_BOOLEAN_BITFIELD(constructed, Constructed);
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 658 milliseconds