/external/chromium/base/memory/ |
D | scoped_ptr_unittest.cc | 29 int constructed = 0; in TEST() local 32 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST() 33 EXPECT_EQ(1, constructed); in TEST() 40 EXPECT_EQ(0, constructed); in TEST() 44 scoped_ptr<ConDecLogger> scoper(new ConDecLogger(&constructed)); in TEST() 45 EXPECT_EQ(1, constructed); in TEST() 48 scoper.reset(new ConDecLogger(&constructed)); in TEST() 49 EXPECT_EQ(1, constructed); in TEST() 53 EXPECT_EQ(0, constructed); in TEST() 56 scoper.reset(new ConDecLogger(&constructed)); in TEST() [all …]
|
/external/chromium/base/ |
D | lazy_instance_unittest.cc | 31 ++constructed; in SlowConstructor() 36 static int constructed; member in __anon5f6e9f590111::SlowConstructor 41 int SlowConstructor::constructed = 0; member in __anon5f6e9f590111::SlowConstructor 88 EXPECT_EQ(0, SlowConstructor::constructed); in TEST() 92 EXPECT_EQ(0, SlowConstructor::constructed); in TEST() 96 EXPECT_EQ(1, SlowConstructor::constructed); in TEST()
|
/external/llvm/test/Archive/ |
D | README.txt | 10 GNU.a - constructed on Linux with GNU ar 11 MacOSX.a - constructed on Mac OS X with its native BSD4.4 ar 12 SVR4.a - constructed on Solaris with /usr/ccs/bin/ar 13 xpg4.a - constructed on Solaris with /usr/xpg4/bin/ar
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
D | ASN1StreamParser.java | 52 DEREncodable readImplicit(boolean constructed, int tag) throws IOException in readImplicit() argument 56 if (!constructed) in readImplicit() 64 if (constructed) in readImplicit() 93 DERObject readTaggedObject(boolean constructed, int tag) throws IOException in readTaggedObject() argument 95 if (!constructed) in readTaggedObject()
|
D | BERTaggedObjectParser.java | 25 boolean constructed, in BERTaggedObjectParser() argument 29 _constructed = constructed; in BERTaggedObjectParser()
|
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/ |
D | WebKitDOMTestInterface.cpp | 116 if (G_OBJECT_CLASS(webkit_dom_test_interface_parent_class)->constructed) in webkit_dom_test_interface_constructed() 117 G_OBJECT_CLASS(webkit_dom_test_interface_parent_class)->constructed(object); in webkit_dom_test_interface_constructed() 126 gobjectClass->constructed = webkit_dom_test_interface_constructed; in webkit_dom_test_interface_class_init()
|
D | WebKitDOMTestMediaQueryListListener.cpp | 114 if (G_OBJECT_CLASS(webkit_dom_test_media_query_list_listener_parent_class)->constructed) in webkit_dom_test_media_query_list_listener_constructed() 115 G_OBJECT_CLASS(webkit_dom_test_media_query_list_listener_parent_class)->constructed(object); in webkit_dom_test_media_query_list_listener_constructed() 124 gobjectClass->constructed = webkit_dom_test_media_query_list_listener_constructed; in webkit_dom_test_media_query_list_listener_class_init()
|
D | WebKitDOMTestSerializedScriptValueInterface.cpp | 139 if (G_OBJECT_CLASS(webkit_dom_test_serialized_script_value_interface_parent_class)->constructed) in webkit_dom_test_serialized_script_value_interface_constructed() 140 …G_OBJECT_CLASS(webkit_dom_test_serialized_script_value_interface_parent_class)->constructed(object… in webkit_dom_test_serialized_script_value_interface_constructed() 149 gobjectClass->constructed = webkit_dom_test_serialized_script_value_interface_constructed; in webkit_dom_test_serialized_script_value_interface_class_init()
|
D | WebKitDOMTestCallback.cpp | 200 if (G_OBJECT_CLASS(webkit_dom_test_callback_parent_class)->constructed) in webkit_dom_test_callback_constructed() 201 G_OBJECT_CLASS(webkit_dom_test_callback_parent_class)->constructed(object); in webkit_dom_test_callback_constructed() 210 gobjectClass->constructed = webkit_dom_test_callback_constructed; in webkit_dom_test_callback_class_init()
|
/external/openssl/crypto/asn1/ |
D | asn1_lib.c | 195 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, in ASN1_put_object() argument 201 i=(constructed)?V_ASN1_CONSTRUCTED:0; in ASN1_put_object() 218 if (constructed == 2) in ASN1_put_object() 257 int ASN1_object_size(int constructed, int length, int tag) in ASN1_object_size() argument 271 if (constructed == 2) in ASN1_object_size()
|
D | a_bytes.c | 133 int ret,r,constructed; in i2d_ASN1_bytes() local 147 constructed=1; in i2d_ASN1_bytes() 149 constructed=0; in i2d_ASN1_bytes() 150 ASN1_put_object(&p,constructed,ret,tag,xclass); in i2d_ASN1_bytes()
|
D | 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, in asn1_print_info() argument 76 if (constructed & V_ASN1_CONSTRUCTED) in asn1_print_info()
|
/external/wpa_supplicant_6/wpa_supplicant/src/tls/ |
D | asn1_test.c | 69 hdr.constructed, in asn1_parse() 70 hdr.constructed ? "Constructed" : "Primitive", in asn1_parse() 74 hdr.constructed) { in asn1_parse()
|
D | asn1.h | 54 u8 identifier, class, constructed; member
|
D | asn1.c | 34 hdr->constructed = !!(hdr->identifier & (1 << 5)); in asn1_get_next()
|
/external/v8/test/mjsunit/ |
D | object-literal.js | 183 function construct() { this.constructed = true; } 187 assertTrue(vo.constructed);
|
/external/wpa_supplicant_8/src/tls/ |
D | asn1.h | 48 u8 identifier, class, constructed; member
|
D | asn1.c | 25 hdr->constructed = !!(hdr->identifier & (1 << 5)); in asn1_get_next()
|
/external/iptables/extensions/ |
D | libipt_NETMAP.man | 7 Network address to map to. The resulting address will be constructed in the
|
/external/webkit/Source/WebCore/rendering/ |
D | InlineBox.h | 72 …nlineBox(RenderObject* obj, float x, float y, float logicalWidth, bool firstLine, bool constructed, in InlineBox() argument 82 , m_constructed(constructed) in InlineBox()
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
D | autocomplete_text_field_editor_unittest.mm | 233 // Test that the menu is constructed correctly when CanPasteAndGo(). 256 // Test that the menu is constructed correctly when !CanPasteAndGo(). 276 // Test that the menu is constructed correctly when field isn't
|
/external/webkit/PerformanceTests/ |
D | ChangeLog | 107 However, I constructed a benchmark which shows at least one possible slow point. 136 However, I constructed a benchmark which shows at least one possible slow point.
|
/external/llvm/test/Feature/ |
D | constexpr.ll | 5 ; This testcase is for testing expressions constructed from
|
/external/llvm/test/Integer/ |
D | constexpr_bt.ll | 6 ; This testcase is for testing expressions constructed from
|
/external/elfutils/libasm/ |
D | ChangeLog | 76 * Makefile.am: Check for text relocations in constructed DSO.
|