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

1 2

  /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);
  /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;
  /external/wpa_supplicant/
asn1_test.c 69 hdr.constructed,
70 hdr.constructed ? "Constructed" : "Primitive",
74 hdr.constructed) {
asn1.h 31 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
54 u8 identifier, class, constructed; member in struct:asn1_hdr
asn1.c 34 hdr->constructed = !!(hdr->identifier & (1 << 5));
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
asn1_test.c 69 hdr.constructed,
70 hdr.constructed ? "Constructed" : "Primitive",
74 hdr.constructed) {
asn1.h 31 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */
54 u8 identifier, class, constructed; member in struct:asn1_hdr
asn1.c 34 hdr->constructed = !!(hdr->identifier & (1 << 5));
  /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/openssl/crypto/asn1/
a_bytes.c 133 int ret,r,constructed; local
147 constructed=1;
149 constructed=0;
150 ASN1_put_object(&p,constructed,ret,tag,xclass);
asn1_lib.c 193 /* 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,
201 i=(constructed)?V_ASN1_CONSTRUCTED:0;
218 if (constructed == 2)
257 int ASN1_object_size(int constructed, int length, int tag)
271 if (constructed == 2)
asn1_par.c 65 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,
76 if (constructed & V_ASN1_CONSTRUCTED)
148 /* if j == 0x21 it is a constructed indefinite length object */
asn1.h 180 int inf; /* constructed if 0x20, indefinite is 0x21 */
195 int inf; /* constructed if 0x20, indefinite is 0x21 */
222 * holder for the location where indefinite length constructed data should
    [all...]
  /external/webkit/WebCore/rendering/
InlineBox.h 70 InlineBox(RenderObject* obj, int x, int y, int width, bool firstLine, bool constructed,
80 , m_constructed(constructed)
  /external/bluetooth/glib/gio/
gthemedicon.c 200 gobject_class->constructed = g_themed_icon_constructed;
  /external/bluetooth/glib/gobject/
gobject.h 276 * @constructed: the @constructed function is called by g_object_new() as the
280 * after construction properties have been set. @constructed implementors
281 * should chain up to the @constructed call of their parent class to allow it
344 void (*constructed) (GObject *object); member in struct:_GObjectClass
gobject.c     [all...]
  /external/openssl/include/openssl/
asn1.h 180 int inf; /* constructed if 0x20, indefinite is 0x21 */
195 int inf; /* constructed if 0x20, indefinite is 0x21 */
222 * holder for the location where indefinite length constructed data should
    [all...]
  /external/zlib/contrib/masm686/
match.asm 106 ; be manually constructed and referenced relative to the ESP register.
  /external/v8/src/
mirror-debugger.js 874 * Returns objects constructed by this function.
877 * @return {Array or undefined} The objects constructed by this function.
881 // Find all objects constructed from this function.
    [all...]
d8.js     [all...]
  /external/v8/benchmarks/
deltablue.js 786 * constraints is constructed with a stay constraint on one end. An
  /external/webkit/SunSpider/tests/v8-v4/
v8-deltablue.js 780 * constraints is constructed with a stay constraint on one end. An
  /external/grub/docs/
texinfo.tex     [all...]

Completed in 539 milliseconds

1 2