/external/chromium/chrome/browser/chromeos/status/ |
D | input_method_menu_unittest.cc | 17 InputMethodDescriptor desc("m17n:fa:isiri", // input method engine id in TEST() local 21 EXPECT_EQ(L"FA", InputMethodMenu::GetTextForIndicator(desc)); in TEST() 24 InputMethodDescriptor desc("hangul", "Korean", "us", "ko"); in TEST() local 26 InputMethodMenu::GetTextForIndicator(desc)); in TEST() 29 InputMethodDescriptor desc("invalid-id", "unregistered string", "us", "xx"); in TEST() local 31 EXPECT_EQ(L"XX", InputMethodMenu::GetTextForIndicator(desc)); in TEST() 36 InputMethodDescriptor desc("xkb:us:dvorak:eng", "Dvorak", "us", "eng"); in TEST() local 37 EXPECT_EQ(L"DV", InputMethodMenu::GetTextForIndicator(desc)); in TEST() 40 InputMethodDescriptor desc("xkb:us:colemak:eng", "Colemak", "us", "eng"); in TEST() local 41 EXPECT_EQ(L"CO", InputMethodMenu::GetTextForIndicator(desc)); in TEST() [all …]
|
/external/v8/test/mjsunit/ |
D | object-define-property.js | 131 var desc = Object.getOwnPropertyDescriptor(obj1, "foo"); 132 assertFalse(desc.configurable); 133 assertFalse(desc.enumerable); 134 assertFalse(desc.writable); 135 assertEquals(desc.get, undefined); 136 assertEquals(desc.set, undefined); 137 assertEquals(desc.value, undefined); 142 desc = Object.getOwnPropertyDescriptor(obj1, "bar"); 143 assertEquals(desc, undefined); 156 desc = Object.getOwnPropertyDescriptor(obj1, "bar"); [all …]
|
D | object-seal.js | 58 var desc = Object.getOwnPropertyDescriptor(obj, 'x'); 59 assertTrue(desc.writable); 60 assertTrue(desc.configurable); 61 assertEquals(42, desc.value); 63 desc = Object.getOwnPropertyDescriptor(obj, 'z'); 64 assertTrue(desc.writable); 65 assertTrue(desc.configurable); 66 assertEquals('foobar', desc.value); 85 desc = Object.getOwnPropertyDescriptor(obj, 'x'); 86 assertTrue(desc.writable); [all …]
|
D | object-freeze.js | 58 var desc = Object.getOwnPropertyDescriptor(obj, 'x'); 59 assertTrue(desc.writable); 60 assertTrue(desc.configurable); 61 assertEquals(42, desc.value); 63 desc = Object.getOwnPropertyDescriptor(obj, 'z'); 64 assertTrue(desc.writable); 65 assertTrue(desc.configurable); 66 assertEquals('foobar', desc.value); 80 desc = Object.getOwnPropertyDescriptor(obj, 'x'); 81 assertFalse(desc.writable); [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | Descriptor.java | 157 public static String rename(String desc, String oldname, String newname) { in rename() argument 158 if (desc.indexOf(oldname) < 0) in rename() 159 return desc; in rename() 165 int j = desc.indexOf('L', i); in rename() 168 else if (desc.startsWith(oldname, j + 1) in rename() 169 && desc.charAt(j + oldname.length() + 1) == ';') { in rename() 170 newdesc.append(desc.substring(head, j)); in rename() 177 i = desc.indexOf(';', j) + 1; in rename() 184 return desc; in rename() 186 int len = desc.length(); in rename() [all …]
|
/external/icu4c/data/misc/ |
D | numberingSystems.txt | 13 desc{"٠١٢٣٤٥٦٧٨٩"} 18 desc{"۰۱۲۳۴۵۶۷۸۹"} 23 desc{"%armenian-upper"} 28 desc{"%armenian-lower"} 33 desc{"᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙"} 38 desc{"০১২৩৪৫৬৭৮৯"} 43 desc{"꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙"} 48 desc{"०१२३४५६७८९"} 53 desc{"%ethiopic"} 58 desc{"0123456789"} [all …]
|
/external/v8/src/ |
D | v8natives.js | 273 var desc = GetOwnProperty(this, P); 274 return IS_UNDEFINED(desc) ? false : desc.isEnumerable(); 290 var desc = new PropertyDescriptor(); 291 desc.setGet(fun); 292 desc.setEnumerable(true); 293 desc.setConfigurable(true); 294 DefineOwnProperty(ToObject(receiver), ToString(name), desc, false); 316 var desc = new PropertyDescriptor(); 317 desc.setSet(fun); 318 desc.setEnumerable(true); [all …]
|
D | proxy.js | 90 var desc = this.getPropertyDescriptor(name) 91 if (IS_UNDEFINED(desc)) { return desc } 92 if ('value' in desc) { 93 return desc.value 95 if (IS_UNDEFINED(desc.get)) { return desc.get } 97 return %_CallFunction(receiver, desc.get) 102 var desc = this.getOwnPropertyDescriptor(name) 103 if (desc) { 104 if ('writable' in desc) { 105 if (desc.writable) { [all …]
|
/external/qemu/android/protocol/ |
D | core-connection.c | 145 CoreConnection* desc; in core_connection_create() local 146 ANEW0(desc); in core_connection_create() 147 desc->console_address = console_address[0]; in core_connection_create() 148 desc->ssocket = NULL; in core_connection_create() 149 desc->stream_name = NULL; in core_connection_create() 151 return desc; in core_connection_create() 155 core_connection_free(CoreConnection* desc) in core_connection_free() argument 157 if (desc == NULL) { in core_connection_free() 160 if (desc->ssocket != NULL) { in core_connection_free() 161 syncsocket_free(desc->ssocket); in core_connection_free() [all …]
|
/external/qemu/ |
D | qerror.c | 49 .desc = "Device '%(device)' can't go on a %(bad_bus_type) bus", 53 .desc = "Bus '%(bus)' not found", 57 .desc = "Bus '%(bus)' does not support hotplugging", 61 .desc = "The command %(name) has not been found", 65 .desc = "Device '%(device)' is encrypted", 69 .desc = "Device '%(device)' could not be initialized", 73 .desc = "Device '%(device)' is in use", 77 .desc = "Device '%(device)' is locked", 81 .desc = "Device '%(device)' has multiple child busses", 85 .desc = "Device '%(device)' has not been activated", [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebFontDescription.cpp | 40 WebFontDescription::WebFontDescription(const FontDescription& desc, in WebFontDescription() argument 43 family = desc.family().family(); in WebFontDescription() 44 genericFamily = static_cast<GenericFamily>(desc.genericFamily()); in WebFontDescription() 45 size = desc.specifiedSize(); in WebFontDescription() 46 italic = desc.italic(); in WebFontDescription() 47 smallCaps = desc.smallCaps(); in WebFontDescription() 48 weight = static_cast<Weight>(desc.weight()); in WebFontDescription() 49 smoothing = static_cast<Smoothing>(desc.fontSmoothing()); in WebFontDescription() 59 FontDescription desc; in operator WebCore::FontDescription() local 60 desc.setFamily(fontFamily); in operator WebCore::FontDescription() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | CommandFlags.h | 26 MArch("march", cl::desc("Architecture to generate code for (see --version)")); 30 cl::desc("Target a specific cpu type (-mcpu=help for details)"), 37 cl::desc("Target specific attributes (-mattr=help for details)"), 42 cl::desc("Choose relocation model"), 57 cl::desc("Choose code model"), 73 cl::desc("When used with filetype=obj, " 78 cl::desc("Choose a file type (not all types are supported by all targets):"), 89 cl::desc("Do not use .loc entries")); 92 cl::desc("Do not use .cfi_* directives")); 95 cl::desc("Use .file directives with an explicit directory.")); [all …]
|
/external/webkit/Tools/Scripts/ |
D | build-webkit | 128 { option => "3d-canvas", desc => "Toggle 3D canvas (WebGL) support", 131 { option => "3d-rendering", desc => "Toggle 3D rendering support", 134 { option => "accelerated-2d-canvas", desc => "Toggle accelerated 2D canvas support", 137 { option => "blob", desc => "Toggle Blob support", 140 { option => "channel-messaging", desc => "Toggle MessageChannel and MessagePort support", 143 { option => "client-based-geolocation", desc => "Toggle client-based Geolocation support", 146 { option => "coverage", desc => "Toggle code coverage support", 149 { option => "database", desc => "Toggle Database Support", 152 { option => "datagrid", desc => "Toggle Datagrid Support", 155 { option => "datalist", desc => "Toggle HTML5 datalist support", [all …]
|
/external/qemu/memcheck/ |
D | memcheck.c | 91 MallocDescEx* desc, in av_access_violation() argument 102 desc->malloc_desc.av_count++; in av_access_violation() 165 addr < (target_ulong)mallocdesc_get_user_ptr(&desc->malloc_desc) ? in av_access_violation() 168 memcheck_dump_malloc_desc(desc, 1, 0); in av_access_violation() 193 MallocDescEx* desc; in memcheck_common_access_validation() local 204 desc = procdesc_find_malloc_for_range(proc, addr, data_size); in memcheck_common_access_validation() 205 *desc_ptr = desc; in memcheck_common_access_validation() 206 if (desc == NULL) { in memcheck_common_access_validation() 212 if (addr < mallocdesc_get_user_ptr(&desc->malloc_desc)) { in memcheck_common_access_validation() 218 user_range_end = mallocdesc_get_user_alloc_end(&desc->malloc_desc); in memcheck_common_access_validation() [all …]
|
D | memcheck_malloc_map.c | 34 MallocDescEx desc; member 52 return adesc->desc.malloc_desc.ptr; in allocmapentry_alloc_begins() 65 return mallocdesc_get_alloc_end(&adesc->desc.malloc_desc); in allocmapentry_alloc_ends() 122 memcpy(replaced, &existing->desc, sizeof(MallocDescEx)); in allocmap_insert_desc() 145 adesc.desc.malloc_desc.ptr = address; in allocmap_find_entry() 146 adesc.desc.malloc_desc.requested_bytes = block_size; in allocmap_find_entry() 147 adesc.desc.malloc_desc.prefix_size = 0; in allocmap_find_entry() 148 adesc.desc.malloc_desc.suffix_size = 0; in allocmap_find_entry() 163 allocmap_insert(AllocMap* map, const MallocDescEx* desc, MallocDescEx* replaced) in allocmap_insert() argument 173 memcpy(&adesc->desc, desc, sizeof(MallocDescEx)); in allocmap_insert() [all …]
|
D | memcheck_mmrange_map.c | 27 MMRangeDesc desc; member 47 const target_ulong start1 = d1->desc.map_start; in cmp_rb() 48 const target_ulong start2 = d2->desc.map_start; in cmp_rb() 51 return (d1->desc.map_end - 1) < start2 ? -1 : 0; in cmp_rb() 53 return (d2->desc.map_end - 1) < start1 ? 1 : 0; in cmp_rb() 84 memcpy(replaced, &existing->desc, sizeof(MMRangeDesc)); in mmrangemap_insert_desc() 106 rdesc.desc.map_start = start; in mmrangemap_find_entry() 107 rdesc.desc.map_end = end; in mmrangemap_find_entry() 123 const MMRangeDesc* desc, in mmrangemap_insert() argument 134 memcpy(&rdesc->desc, desc, sizeof(MMRangeDesc)); in mmrangemap_insert() [all …]
|
/external/v8/test/mjsunit/regress/ |
D | regress-687.js | 35 var desc = Object.getOwnPropertyDescriptor(obj, "value"); 37 assertTrue(desc.configurable); 38 assertTrue(desc.enumerable); 39 assertTrue(desc.writable); 40 assertEquals(desc.get, undefined); 41 assertEquals(desc.set, undefined); 59 desc = Object.getOwnPropertyDescriptor(obj1, "p"); 60 assertFalse(desc.configurable); 61 assertFalse(desc.enumerable); 62 assertEquals(desc.value, undefined); [all …]
|
/external/libvpx/libvpx/vpx_mem/memory_manager/ |
D | hmm_base.c | 18 void U(init)(U(descriptor) *desc) in U() 20 desc->avl_tree_root = 0; in U() 21 desc->last_freed = 0; in U() 41 U(descriptor) *desc, in U() 48 U(avl_insert)((U(avl_avl) *) & (desc->avl_tree_root), ptr_rec_ptr); in U() 78 U(descriptor) *desc, in U() 113 (U(avl_avl) *) &(desc->avl_tree_root), BLOCK_BAUS(head_ptr)); in U() 140 desc->last_freed = rem_head_ptr; in U() 150 U(descriptor) *desc, in U() 168 U(avl_subst)((U(avl_avl) *) &(desc->avl_tree_root), next); in U() [all …]
|
/external/javassist/src/main/javassist/runtime/ |
D | Desc.java | 66 public static Class[] getParams(String desc) { in getParams() argument 67 if (desc.charAt(0) != '(') in getParams() 70 return getType(desc, desc.length(), 1, 0); in getParams() 77 public static Class getType(String desc) { in getType() argument 78 Class[] result = getType(desc, desc.length(), 0, 0); in getType() 85 private static Class[] getType(String desc, int descLen, in getType() argument 91 char c = desc.charAt(start); in getType() 122 return getClassType(desc, descLen, start, num); in getType() 127 Class[] result = getType(desc, descLen, start + 1, num + 1); in getType() 132 private static Class[] getClassType(String desc, int descLen, in getClassType() argument [all …]
|
/external/qemu/android/skin/ |
D | image.c | 173 skin_image_desc_hash( SkinImageDesc* desc ) in skin_image_desc_hash() argument 178 for (n = 0; desc->path[n] != 0; n++) { in skin_image_desc_hash() 179 int c = desc->path[n]; in skin_image_desc_hash() 182 h += desc->rotation*1573; in skin_image_desc_hash() 183 h += desc->blend * 7; in skin_image_desc_hash() 220 SkinImageDesc desc; member 253 skin_image_alloc( SkinImageDesc* desc, unsigned hash ) in skin_image_alloc() argument 255 int len = strlen(desc->path); in skin_image_alloc() 259 image->desc = desc[0]; in skin_image_alloc() 260 image->desc.path = (const char*)(image + 1); in skin_image_alloc() [all …]
|
/external/skia/tests/ |
D | ReadWriteAlphaTest.cpp | 29 GrTextureDesc desc; in ReadWriteAlphaTest() local 32 desc.fFlags = kRenderTarget_GrTextureFlagBit; in ReadWriteAlphaTest() 34 desc.fConfig = kAlpha_8_GrPixelConfig; in ReadWriteAlphaTest() 35 desc.fWidth = X_SIZE; in ReadWriteAlphaTest() 36 desc.fHeight = Y_SIZE; in ReadWriteAlphaTest() 39 GrTexture* texture = context->createUncachedTexture(desc, textureData, 0); in ReadWriteAlphaTest() 54 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig, in ReadWriteAlphaTest() 63 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig, in ReadWriteAlphaTest() 91 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig, in ReadWriteAlphaTest()
|
D | Test.h | 46 void assertTrue(bool cond, const char desc[]) { in assertTrue() argument 48 this->report(desc, kFailed); in assertTrue() 51 void assertFalse(bool cond, const char desc[]) { in assertFalse() argument 53 this->report(desc, kFailed); in assertFalse() 56 void reportFailed(const char desc[]) { in reportFailed() argument 57 this->report(desc, kFailed); in reportFailed() 59 void reportFailed(const SkString& desc) { in reportFailed() argument 60 this->report(desc.c_str(), kFailed); in reportFailed() 69 virtual void onReport(const char desc[], Result) {} in onReport() argument 119 SkString desc; \ [all …]
|
/external/icu4c/test/testdata/ |
D | idna_conf.txt | 2 desc: Copyright 2003-2005 http://idnconnect.jdna.jp/testbed.html 13 desc: 1-1-1 Has one IDN 24 desc: 1-1-2 Has two IDNs 35 desc: 1-2-1 Latin-1 46 desc: 1-2-2 Latin Extended A 57 desc: 1-2-3 Latin Extended B 68 desc: 1-2-4 Latin Extended Additional 79 desc: 1-3-1 Han 90 desc: 1-3-2 Hiragana 101 desc: 1-3-3 Katakana [all …]
|
/external/skia/src/gpu/gl/ |
D | GrGLRenderTarget.cpp | 16 void GrGLRenderTarget::init(const Desc& desc, in init() argument 19 fRTFBOID = desc.fRTFBOID; in init() 20 fTexFBOID = desc.fTexFBOID; in init() 21 fMSColorRenderbufferID = desc.fMSColorRenderbufferID; in init() 43 const Desc& desc, in GrGLRenderTarget() argument 48 desc.fIsWrapped, in GrGLRenderTarget() 52 desc.fConfig, desc.fSampleCnt), in GrGLRenderTarget() 58 GrAssert(0 != desc.fRTFBOID); in GrGLRenderTarget() 59 GrAssert(0 != desc.fTexFBOID); in GrGLRenderTarget() 65 this->init(desc, viewport, texID); in GrGLRenderTarget() [all …]
|
/external/qemu/android/camera/ |
D | camera-format-converters.c | 462 typedef int (*u_offset_func)(const YUVDesc* desc, int line, int width, int height); 474 typedef int (*v_offset_func)(const YUVDesc* desc, int line, int width, int height); 661 _UOffIntrlYUV(const YUVDesc* desc, int line, int width, int height) in _UOffIntrlYUV() argument 666 return line * width * 2 + desc->U_offset; in _UOffIntrlYUV() 671 _VOffIntrlYUV(const YUVDesc* desc, int line, int width, int height) in _VOffIntrlYUV() argument 674 return line * width * 2 + desc->V_offset; in _VOffIntrlYUV() 679 _UOffIntrlUV(const YUVDesc* desc, int line, int width, int height) in _UOffIntrlUV() argument 690 return (height + line / 2) * width + desc->U_offset; in _UOffIntrlUV() 695 _VOffIntrlUV(const YUVDesc* desc, int line, int width, int height) in _VOffIntrlUV() argument 698 return (height + line / 2) * width + desc->V_offset; in _VOffIntrlUV() [all …]
|