/external/icu/icu4c/source/common/ |
D | uenum.cpp | 34 static void* _getBuffer(UEnumeration* en, int32_t capacity) { in _getBuffer() argument 36 if (en->baseContext != NULL) { in _getBuffer() 37 if (((_UEnumBuffer*) en->baseContext)->len < capacity) { in _getBuffer() 39 en->baseContext = uprv_realloc(en->baseContext, in _getBuffer() 41 if (en->baseContext == NULL) { in _getBuffer() 44 ((_UEnumBuffer*) en->baseContext)->len = capacity; in _getBuffer() 48 en->baseContext = uprv_malloc(sizeof(int32_t) + capacity); in _getBuffer() 49 if (en->baseContext == NULL) { in _getBuffer() 52 ((_UEnumBuffer*) en->baseContext)->len = capacity; in _getBuffer() 55 return (void*) & ((_UEnumBuffer*) en->baseContext)->data; in _getBuffer() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 11 # • The supported may have the threshold distance reset as a first item, eg 50, en, fr 30 # en-GB, en-AU, and en-NZ are in a cluster; en in a different one 32 en-GB, en-US ; en-AU ; en-GB 33 en-US, en-GB ; en-AU ; en-GB 35 en-GB, en ; en-AU ; en-GB 36 en, en-GB ; en-AU ; en-GB 38 en-NZ, en-US ; en-AU ; en-NZ 39 en-US, en-NZ ; en-AU ; en-NZ 41 en-NZ, en ; en-AU ; en-NZ 42 en, en-NZ ; en-AU ; en-NZ [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/data/ |
D | localeMatcherTest.txt | 11 # • The supported may have the threshold distance reset as a first item, eg 50, en, fr 30 # en-GB, en-AU, and en-NZ are in a cluster; en in a different one 32 en-GB, en-US ; en-AU ; en-GB 33 en-US, en-GB ; en-AU ; en-GB 35 en-GB, en ; en-AU ; en-GB 36 en, en-GB ; en-AU ; en-GB 38 en-NZ, en-US ; en-AU ; en-NZ 39 en-US, en-NZ ; en-AU ; en-NZ 41 en-NZ, en ; en-AU ; en-NZ 42 en, en-NZ ; en-AU ; en-NZ [all …]
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/ |
D | localeMatcherTest.txt | 8 # • The supported may have the threshold distance reset as a first item, eg 50, en, fr 26 # en-GB, en-AU, and en-NZ are in a cluster; en in a different one 28 en-GB, en-US ; en-AU ; en-GB 29 en-US, en-GB ; en-AU ; en-GB 31 en-GB, en ; en-AU ; en-GB 32 en, en-GB ; en-AU ; en-GB 34 en-NZ, en-US ; en-AU ; en-NZ 35 en-US, en-NZ ; en-AU ; en-NZ 37 en-NZ, en ; en-AU ; en-NZ 38 en, en-NZ ; en-AU ; en-NZ [all …]
|
D | localeDistanceTest.txt | 9 en-CA ; en-CA ; 0 10 ar-MK ; en-CA ; 100 18 to ; en ; 14 ; 100 26 zh-Hans ; en ; 100 28 en-US ; en-AU ; 5 # across clusters 29 en-VI ; en-GU ; 4 # within cluster 30 en-AU ; en-CA ; 4 # within cluster 33 en-CA ; en-Cyrl ; 100 34 en-Cyrl ; es-MX ; 100
|
/external/mesa3d/src/util/xmlpool/ |
D | t_options.h | 56 DRI_CONF_DESC(en,gettext("Debugging")) 60 DRI_CONF_DESC(en,gettext("Disable 3D acceleration")) \ 65 DRI_CONF_DESC(en,gettext("Show performance boxes")) \ 70 DRI_CONF_DESC(en,gettext("Enable flushing batchbuffer after each draw call")) \ 75 DRI_CONF_DESC(en,gettext("Enable flushing GPU caches with each draw call")) \ 80 DRI_CONF_DESC(en,gettext("Disable throttling on first batch after flush")) \ 85 DRI_CONF_DESC(en,gettext("Force GLSL extension default behavior to 'warn'")) \ 90 DRI_CONF_DESC(en,gettext("Disable dual source blending")) \ 95 … DRI_CONF_DESC(en,gettext("Identify dual color blending sources by location rather than index")) \ 100 DRI_CONF_DESC(en,gettext("Disable backslash-based line continuations in GLSL source")) \ [all …]
|
/external/python/cpython3/Objects/ |
D | enumobject.c | 43 enumobject *en; in enum_new_impl() local 45 en = (enumobject *)type->tp_alloc(type, 0); in enum_new_impl() 46 if (en == NULL) in enum_new_impl() 51 Py_DECREF(en); in enum_new_impl() 55 en->en_index = PyLong_AsSsize_t(start); in enum_new_impl() 56 if (en->en_index == -1 && PyErr_Occurred()) { in enum_new_impl() 58 en->en_index = PY_SSIZE_T_MAX; in enum_new_impl() 59 en->en_longindex = start; in enum_new_impl() 61 en->en_longindex = NULL; in enum_new_impl() 65 en->en_index = 0; in enum_new_impl() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 45 DecimalFormatSymbols en = new DecimalFormatSymbols(Locale.ENGLISH); in TestSymbols() local 47 if(en.equals(fr)) { in TestSymbols() 53 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols() 56 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols() 60 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols() 63 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols() 67 char zero = en.getZeroDigit(); in TestSymbols() 69 if(fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 73 String[] digits = en.getDigitStrings(); in TestSymbols() 75 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols() [all …]
|
D | IntlTestDecimalFormatSymbolsC.java | 39 DecimalFormatSymbols en = new DecimalFormatSymbols(Locale.ENGLISH); in TestSymbols() local 41 if (en.equals(fr)) { in TestSymbols() 47 char zero = en.getZeroDigit(); in TestSymbols() 49 if (fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 53 char group = en.getGroupingSeparator(); in TestSymbols() 55 if (fr.getGroupingSeparator() != en.getGroupingSeparator()) { in TestSymbols() 59 char decimal = en.getDecimalSeparator(); in TestSymbols() 61 if (fr.getDecimalSeparator() != en.getDecimalSeparator()) { in TestSymbols() 65 char perMill = en.getPerMill(); in TestSymbols() 67 if (fr.getPerMill() != en.getPerMill()) { in TestSymbols() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | IntlTestDecimalFormatSymbols.java | 48 DecimalFormatSymbols en = new DecimalFormatSymbols(Locale.ENGLISH); in TestSymbols() local 50 if(en.equals(fr)) { in TestSymbols() 56 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols() 59 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols() 63 if(!en.getLocale().equals(Locale.ENGLISH)) { in TestSymbols() 66 if(!en.getULocale().equals(ULocale.ENGLISH)) { in TestSymbols() 70 char zero = en.getZeroDigit(); in TestSymbols() 72 if(fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 76 String[] digits = en.getDigitStrings(); in TestSymbols() 78 if (!Arrays.equals(fr.getDigitStrings(), en.getDigitStrings())) { in TestSymbols() [all …]
|
D | IntlTestDecimalFormatSymbolsC.java | 42 DecimalFormatSymbols en = new DecimalFormatSymbols(Locale.ENGLISH); in TestSymbols() local 44 if (en.equals(fr)) { in TestSymbols() 50 char zero = en.getZeroDigit(); in TestSymbols() 52 if (fr.getZeroDigit() != en.getZeroDigit()) { in TestSymbols() 56 char group = en.getGroupingSeparator(); in TestSymbols() 58 if (fr.getGroupingSeparator() != en.getGroupingSeparator()) { in TestSymbols() 62 char decimal = en.getDecimalSeparator(); in TestSymbols() 64 if (fr.getDecimalSeparator() != en.getDecimalSeparator()) { in TestSymbols() 68 char perMill = en.getPerMill(); in TestSymbols() 70 if (fr.getPerMill() != en.getPerMill()) { in TestSymbols() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | language_list.txt | 40 en-AG English Antigua and Barbuda 41 en-AI English Anguilla 42 en-AS English American Samoa 43 en-AU English Australia 44 en-BB English Barbados 45 en-BM English Bermuda 46 en-BN English Brunei 47 en-BS English Bahamas 48 en-BW English Botswana 49 en-BZ English Belize [all …]
|
/external/python/cpython2/Objects/ |
D | enumobject.c | 16 enumobject *en; in enum_new() local 25 en = (enumobject *)type->tp_alloc(type, 0); in enum_new() 26 if (en == NULL) in enum_new() 31 Py_DECREF(en); in enum_new() 35 en->en_index = PyInt_AsSsize_t(start); in enum_new() 36 if (en->en_index == -1 && PyErr_Occurred()) { in enum_new() 38 en->en_index = PY_SSIZE_T_MAX; in enum_new() 39 en->en_longindex = start; in enum_new() 41 en->en_longindex = NULL; in enum_new() 45 en->en_index = 0; in enum_new() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | csdetect.cpp | 339 enumClose(UEnumeration *en) { in enumClose() argument 340 if(en->context != NULL) { in enumClose() 341 DELETE_ARRAY(en->context); in enumClose() 344 DELETE_ARRAY(en); in enumClose() 348 enumCount(UEnumeration *en, UErrorCode *) { in enumCount() argument 349 if (((Context *)en->context)->all) { in enumCount() 356 UBool *enabledArray = ((Context *)en->context)->enabledRecognizers; in enumCount() 376 enumNext(UEnumeration *en, int32_t *resultLength, UErrorCode * /*status*/) { in enumNext() argument 379 if (((Context *)en->context)->currIndex < fCSRecognizers_size) { in enumNext() 380 if (((Context *)en->context)->all) { in enumNext() [all …]
|
/external/libphonenumber/ |
D | release_notes.txt | 19 - Updated geocoding data for country calling code(s): 504 (en) 20 - New carrier data for country calling code(s): 886 (en), 1284 (en) 21 - Updated carrier data for country calling code(s): 63 (en), 92 (en) 54 960 (en), 1249 (en), 1343 (en), 1579 (en), 1581 (en) 56 1782 (en), 1867 (en), 1902 (en) 58 91 (en), 234 (en), 971 (en) 71 - New geocoding data for country calling code(s): 1463 (en), 358 (sv) 73 - Updated geocoding data for country calling code(s): 7 (en, ru) 75 91 (en), 256 (en), 1876 (en) 89 - Updated geocoding data for country calling code(s): 56 (en, es) [all …]
|
/external/icu/icu4c/source/data/lang/ |
D | es_MX.txt | 94 arab{"Dígitos en arábigo-índico"} 95 arabext{"Dígitos en árabigo-índico extendido"} 96 armn{"Números en armenio"} 97 armnlow{"Números en armenio en minúscula"} 98 ethi{"Números en etíope"} 99 geor{"Números en georgiano"} 100 grek{"Números en griego"} 101 greklow{"Números en griego en minúscula"} 102 gujr{"dígitos en gujarati"} 103 guru{"Dígitos en gurmuji"} [all …]
|
/external/mesa3d/prebuilt-intermediates/xmlpool/ |
D | options.h | 60 DRI_CONF_DESC(en,"Debugging") \ 69 DRI_CONF_DESC(en,"Disable 3D acceleration") \ 79 DRI_CONF_DESC(en,"Show performance boxes") \ 89 DRI_CONF_DESC(en,"Enable flushing batchbuffer after each draw call") \ 99 DRI_CONF_DESC(en,"Enable flushing GPU caches with each draw call") \ 109 DRI_CONF_DESC(en,"Disable throttling on first batch after flush") \ 119 DRI_CONF_DESC(en,"Force GLSL extension default behavior to 'warn'") \ 129 DRI_CONF_DESC(en,"Disable dual source blending") \ 139 DRI_CONF_DESC(en,"Identify dual color blending sources by location rather than index") \ 149 DRI_CONF_DESC(en,"Disable backslash-based line continuations in GLSL source") \ [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | tsdtfmsy.cpp | 188 DateFormatSymbols en(Locale::getEnglish(), status); in TestSymbols() local 194 if(en == fr || ! (en != fr) ) { in TestSymbols() 201 const UnicodeString *eras = en.getEras(count); in TestSymbols() 207 const UnicodeString *eraNames = en.getEraNames(eraNamesCount); in TestSymbols() 215 const UnicodeString *narrowEras = en.getNarrowEras(narrowErasCount); in TestSymbols() 224 if( *en.getEras(count) != *fr.getEras(count)) { in TestSymbols() 228 const UnicodeString *months = en.getMonths(count); in TestSymbols() 230 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols() 234 const UnicodeString *shortMonths = en.getShortMonths(count); in TestSymbols() 236 if( *en.getShortMonths(count) != *fr.getShortMonths(count)) { in TestSymbols() [all …]
|
/external/e2fsprogs/po/ |
D | Rules-quot | 3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin… 5 .SUFFIXES: .insert-header .po-update-en 7 en@quot.po-create: 8 $(MAKE) en@quot.po-update 9 en@boldquot.po-create: 10 $(MAKE) en@boldquot.po-update 12 en@quot.po-update: en@quot.po-update-en 13 en@boldquot.po-update: en@boldquot.po-update-en 15 .insert-header.po-update-en: 16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ [all …]
|
/external/elfutils/po/ |
D | Rules-quot | 3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin… 5 .SUFFIXES: .insert-header .po-update-en 7 en@quot.po-create: 8 $(MAKE) en@quot.po-update 9 en@boldquot.po-create: 10 $(MAKE) en@boldquot.po-update 12 en@quot.po-update: en@quot.po-update-en 13 en@boldquot.po-update: en@boldquot.po-update-en 15 .insert-header.po-update-en: 16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ [all …]
|
/external/libexif/po/ |
D | Rules-quot | 3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin… 5 .SUFFIXES: .insert-header .po-update-en 7 en@quot.po-create: 8 $(MAKE) en@quot.po-update 9 en@boldquot.po-create: 10 $(MAKE) en@boldquot.po-update 12 en@quot.po-update: en@quot.po-update-en 13 en@boldquot.po-update: en@boldquot.po-update-en 15 .insert-header.po-update-en: 16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ [all …]
|
/external/wayland/doc/publican/ |
D | Makefile.am | 16 html_destdir := $(builddir)/Wayland/en-US/html 66 alldirs := $(builddir)/en-US $(builddir)/en-US/images $(html_destdir) $(html_destdir)/css $(html_de… 72 map_targets := $(map_sources:$(doxydir)/xml/%=$(builddir)/en-US/images/%) 73 processed_targets := $(processed_sources:$(srcdir)/sources/%=$(builddir)/en-US/%) 75 …ml_css_targets) $(html_img_targets) $(processed_targets) $(doxygen_img_targets) | $(builddir)/en-US 76 $(AM_V_GEN)$(XMLTO) $(XMLTO_PARAM) html $(builddir)/en-US/Wayland.xml -o $(html_destdir) 88 pubdir = $(docdir)/Wayland/en-US 90 publican_targets = $(publican_sources:$(srcdir)/sources/%=$(builddir)/en-US/%) \ 91 $(builddir)/en-US/ProtocolSpec.xml \ 92 $(builddir)/en-US/ProtocolInterfaces.xml \ [all …]
|
/external/autotest/client/site_tests/platform_PrinterPpds/digests/ |
D | annotation_highlight_square_with_ap.pdf.digests | 217 Epson-Artisan_1430-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 218 Epson-Artisan_630-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 219 Epson-Artisan_700-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 220 Epson-Artisan_710-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 221 Epson-Artisan_720-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 222 Epson-Artisan_730-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 223 Epson-Artisan_800-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 224 Epson-Artisan_810-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 225 Epson-Artisan_830-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 226 Epson-Artisan_837-epson-escpr-en-1.6.10.ppd.gz 9d69cfe276b5ab4a752b02e132f63920 [all …]
|
D | embedded_images.pdf.digests | 217 Epson-Artisan_1430-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 218 Epson-Artisan_630-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 219 Epson-Artisan_700-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 220 Epson-Artisan_710-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 221 Epson-Artisan_720-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 222 Epson-Artisan_730-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 223 Epson-Artisan_800-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 224 Epson-Artisan_810-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 225 Epson-Artisan_830-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 226 Epson-Artisan_837-epson-escpr-en-1.6.10.ppd.gz df7e400536735895f2abf17e43abcb00 [all …]
|
D | split_streams.pdf.digests | 217 Epson-Artisan_1430-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 218 Epson-Artisan_630-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 219 Epson-Artisan_700-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 220 Epson-Artisan_710-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 221 Epson-Artisan_720-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 222 Epson-Artisan_730-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 223 Epson-Artisan_800-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 224 Epson-Artisan_810-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 225 Epson-Artisan_830-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb 226 Epson-Artisan_837-epson-escpr-en-1.6.10.ppd.gz 9da96b2142e2e429d4a45ef00535c2bb [all …]
|