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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/061-out-of-memory/
info.txt 1 Tests the various ways that an OutOfMemoryError can be constructed and thrown.
  /external/chromium/base/
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...]
lazy_instance_unittest.cc 30 ++constructed;
35 static int constructed; member in class:__anon2181::SlowConstructor
40 int SlowConstructor::constructed = 0; member in class:__anon2181::SlowConstructor
87 EXPECT_EQ(0, SlowConstructor::constructed);
91 EXPECT_EQ(0, SlowConstructor::constructed);
95 EXPECT_EQ(1, SlowConstructor::constructed);
  /dalvik/tests/030-bad-finalizer/
expected.txt 0 Constructed object.
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 59 out.writeEncoded(CONSTRUCTED | TAGGED, tagNo, bytes);
64 // need to mark constructed types...
67 if ((bytes[0] & CONSTRUCTED) != 0)
69 flags = CONSTRUCTED | TAGGED;
82 out.writeEncoded(CONSTRUCTED | TAGGED, tagNo, ZERO_BYTES);
DERConstructedSequence.java 27 * As DER requires the constructed, definite-length model to
30 * we also have to specify CONSTRUCTED, and the objects length.
51 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
BERConstructedSequence.java 20 out.write(SEQUENCE | CONSTRUCTED);
DERConstructedSet.java 53 * As DER requires the constructed, definite-length model to
56 * we also have to specify CONSTRUCTED, and the objects length.
77 out.writeEncoded(SET | CONSTRUCTED, bytes);
DERSequence.java 53 * As DER requires the constructed, definite-length model to
56 * we also have to specify CONSTRUCTED, and the objects length.
78 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
DERSet.java 73 * As DER requires the constructed, definite-length model to
76 * we also have to specify CONSTRUCTED, and the objects length.
98 out.writeEncoded(SET | CONSTRUCTED, bytes);
BERSequence.java 42 out.write(SEQUENCE | CONSTRUCTED);
BERInputStream.java 101 case SEQUENCE | CONSTRUCTED:
116 case OCTET_STRING | CONSTRUCTED:
118 case SET | CONSTRUCTED:
147 if ((tag & CONSTRUCTED) == 0)
155 // either constructed or explicitly tagged
BERSet.java 52 out.write(SET | CONSTRUCTED);
LazyDERSequence.java 73 out.writeEncoded(SEQUENCE | CONSTRUCTED, encoded);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.2.1-2.js 28 The [[Prototype]] property of the newly constructed
33 The [[Class]] property of the newly constructed object
36 The length property of the newly constructed object is
39 The 0 property of the newly constructed object is set
41 are, the k property of the newly constructed object is
15.4.2.1-1.js 28 The [[Prototype]] property of the newly constructed
33 The [[Class]] property of the newly constructed object
36 The length property of the newly constructed object is
39 The 0 property of the newly constructed object is set
41 are, the k property of the newly constructed object is
45 This file tests the typeof the newly constructed object.
15.4.2.2-2.js 29 The [[Prototype]] property of the newly constructed
34 The [[Class]] property of the newly constructed object
38 property of the newly constructed object is set to
42 property of the newly constructed object is set to 1
43 and the 0 property of the newly constructed object is
46 This file tests length of the newly constructed array
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
par_loop.h 80 bool* constructed; local
92 constructed = new bool[num_threads];
108 constructed[iam] = true;
111 constructed[iam] = false;
120 if (constructed[i])
128 delete[] constructed;
  /dalvik/tests/030-bad-finalizer/src/
Main.java 10 System.out.println("Constructed object.");
  /external/chromium/net/base/
cert_verify_result.h 11 // certificate chain that was constructed during certificate verification.
  /external/iptables/extensions/
libipt_NETMAP.man 7 Network address to map to. The resulting address will be constructed in the
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerInputStream.java 76 throw new ASN1Exception("ASN.1 bitstring: constructed identifier at [" + tagOffset + "]. Not valid for DER.");
108 throw new ASN1Exception("ASN.1 octetstring: constructed identifier at [" + tagOffset + "]. Not valid for DER.");
145 throw new ASN1Exception("ASN.1 string: constructed identifier at [" + tagOffset + "]. Not valid for DER.");
156 // It is a string type and it can be encoded as primitive or constructed.
157 throw new ASN1Exception("ASN.1 UTCTime: constructed identifier at [" + tagOffset + "]. Not valid for DER.");
174 // It is a string type and it can be encoded as primitive or constructed.
175 throw new ASN1Exception("ASN.1 GeneralizedTime: constructed identifier at [" + tagOffset + "]. Not valid for DER.");
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.2.2.js 31 The [[Prototype]] property of the newly constructed object is set to
34 The [[Class]] property of the newly constructed object is set
37 The newly constructed object has no [[Value]] property.
  /external/v8/test/mjsunit/bugs/
618.js 36 // Add setter somewhere on the prototype chain after having constructed the
51 // Add setter somewhere on the prototype chain after having constructed the
66 // Add setter somewhere on the prototype chain after having constructed the
81 // Add setter somewhere on the prototype chain after having constructed the
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/
vms-conf.h 1 /* config.h manually constructed for VMS */

Completed in 501 milliseconds

1 2 3 4 5 6 7 8 91011>>