/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetSelector.java | 45 private String[] encodings; // encodings users ask to use field in CharsetSelector 49 int columns = (encodings.length + 31) / 32; in generateSelectorData() 57 for (int i = 0; i < encodings.length; ++i) { in generateSelectorData() 58 Charset testCharset = CharsetICU.forNameICU(encodings[i]); in generateSelectorData() 108 int columns = (encodings.length + 31) / 32; in selectForMask() 116 for (int i = 0; i < 32 && k < encodings.length; i++, k++) { in selectForMask() 118 result.add(encodings[k]); in selectForMask() 176 encodings = charsetList.toArray(new String[0]); in CharsetSelector() 178 encodings = CharsetProviderICU.getAvailableNames(); in CharsetSelector() 179 encodingCount = encodings.length; in CharsetSelector() [all …]
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | invalid-armv7.txt | 3 # This file is checking ARMv7 encodings which are globally invalid, usually due 9 # Undefined encodings for bfi 24 # Undefined encodings for cdp2 33 # Undefined encodings for cps* 46 # CPS: various encodings that are ambiguous with other instructions 78 # Undefined encodings for ldc 95 # Undefined encodings for ldm 113 # Undefined encodings for ldr 152 # Undefined encodings for mcr 169 # Undefined encodings for mov/lsl [all …]
|
D | invalid-thumbv7.txt | 4 # This file is checking Thumbv7 encodings which are globally invalid, usually due 73 # Undefined encodings for ldrbt 89 # Undefined encodings for ldrsh 157 # Undefined encodings for str 233 # Undefined encodings for strd 242 # Undefined encodings for NEON vld instructions 325 # Undefined encodings for NEON vst1 348 # Undefined encodings for NEON vst4
|
/external/libvncserver/utils/ |
D | bdf2c.pl | 3 @encodings=(); 5 $encodings[$i]="0"; 28 @encodings[$glyphindex*5..($glyphindex*5+4)]=($counter,$width,$height,$x,$y); 30 $encodings[$glyphindex*5+1]=$dwidth; 57 print $encodings[$i] . ",";
|
/external/apache-http/src/org/apache/http/impl/entity/ |
D | LaxContentLengthStrategy.java | 205 HeaderElement[] encodings = null; in determineLength() local 207 encodings = transferEncodingHeader.getElements(); in determineLength() 215 for (int i = 0; i < encodings.length; i++) { in determineLength() 216 String encoding = encodings[i].getName(); in determineLength() 225 int len = encodings.length; in determineLength() 229 encodings[len - 1].getName()))) { in determineLength()
|
/external/icu/icu4c/source/common/ |
D | ucnvsel.cpp | 54 char** encodings; // which encodings did user ask to use? member 83 UConverter* test_converter = ucnv_open(result->encodings[i], status); in generateSelectorData() 176 newSelector->encodings = in ucnvsel_open() 178 if (!newSelector->encodings) { in ucnvsel_open() 182 newSelector->encodings[0] = NULL; // now we can call ucnvsel_close() in ucnvsel_open() 204 newSelector->encodings[i] = allStrings; in ucnvsel_open() 205 uprv_strcpy(newSelector->encodings[i], in ucnvsel_open() 207 allStrings += uprv_strlen(newSelector->encodings[i]) + 1; in ucnvsel_open() 234 uprv_free(sel->encodings[0]); in ucnvsel_close() 236 uprv_free(sel->encodings); in ucnvsel_close() [all …]
|
/external/freetype/src/pcf/ |
D | pcfdrivr.c | 70 PCF_Encoding encodings; member 86 cmap->encodings = face->encodings; in pcf_cmap_init() 98 cmap->encodings = NULL; in pcf_cmap_done() 108 PCF_Encoding encodings = cmap->encodings; in pcf_cmap_char_index() local 122 code = (FT_ULong)encodings[mid].enc; in pcf_cmap_char_index() 126 result = encodings[mid].glyph + 1; in pcf_cmap_char_index() 145 PCF_Encoding encodings = cmap->encodings; in pcf_cmap_char_next() local 160 code = (FT_ULong)encodings[mid].enc; in pcf_cmap_char_next() 164 result = encodings[mid].glyph + 1; in pcf_cmap_char_next() 177 charcode = (FT_ULong)encodings[min].enc; in pcf_cmap_char_next() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | ucnvseltst.c | 273 getResultsManually(const char** encodings, int32_t num_encodings, in getResultsManually() argument 291 test_converter = ucnv_open(encodings[i], &status); in getResultsManually() 301 encIndex = findIndex(encodings[i]); in getResultsManually() 401 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); in TestSelector() local 403 uprv_free((void *)encodings); in TestSelector() 420 sel_rt = ucnvsel_open(encodings, num_encodings, in TestSelector() 430 sel_fb = ucnvsel_open(encodings, num_encodings, in TestSelector() 434 sel_fb = ucnvsel_open(encodings, num_encodings, in TestSelector() 441 uprv_free((void *)encodings); in TestSelector() 457 manual_rt = getResultsManually(encodings, num_encodings, in TestSelector() [all …]
|
/external/llvm/test/tools/llvm-objdump/ |
D | macho-unwind-info-x86_64.test | 4 # common and packed encodings. 8 # CHECK: Common encodings array section offset: 0x1c 9 # CHECK: Number of common encodings in array: 0x2 14 # CHECK: Common encodings: (count = 2)
|
D | macho-unwind-info-arm64.test | 3 # The 2nd level index here is "regular", including all offsets & encodings in 8 # CHECK: Common encodings array section offset: 0x1c 9 # CHECK: Number of common encodings in array: 0x2 14 # CHECK: Common encodings: (count = 2)
|
/external/python/cpython3/Modules/expat/ |
D | xmltok_ns.c | 29 static const ENCODING * const NS(encodings)[] = { variable 43 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 51 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 87 return NS(encodings)[i]; in NS()
|
/external/expat/lib/ |
D | xmltok_ns.c | 56 static const ENCODING * const NS(encodings)[] = { variable 70 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 78 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 114 return NS(encodings)[i]; in NS()
|
/external/python/cpython2/Modules/expat/ |
D | xmltok_ns.c | 29 static const ENCODING * const NS(encodings)[] = { variable 43 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 51 return initScan(NS(encodings), (const INIT_ENCODING *)enc, in NS() 87 return NS(encodings)[i]; in NS()
|
/external/libvterm/src/ |
D | encoding.c | 207 encodings[] = { variable 218 for(int i = 0; encodings[i].designation; i++) in vterm_lookup_encoding() 219 if(encodings[i].type == type && encodings[i].designation == designation) in vterm_lookup_encoding() 220 return encodings[i].enc; in vterm_lookup_encoding()
|
/external/freetype/src/bdf/ |
D | bdfdrivr.c | 58 BDF_encoding_el* encodings; member 73 cmap->encodings = face->en_table; in bdf_cmap_init() 85 cmap->encodings = NULL; in bdf_cmap_done() 95 BDF_encoding_el* encodings = cmap->encodings; in bdf_cmap_char_index() local 109 code = (FT_ULong)encodings[mid].enc; in bdf_cmap_char_index() 115 result = encodings[mid].glyph + 1; in bdf_cmap_char_index() 134 BDF_encoding_el* encodings = cmap->encodings; in bdf_cmap_char_next() local 149 code = (FT_ULong)encodings[mid].enc; in bdf_cmap_char_next() 155 result = encodings[mid].glyph + 1; in bdf_cmap_char_next() 168 charcode = (FT_ULong)encodings[min].enc; in bdf_cmap_char_next() [all …]
|
/external/llvm/test/MC/ARM/ |
D | thumb2-branches.s | 4 @ unconditional branches accept narrow suffix and encode to short encodings 14 @ unconditional branches accept wide suffix and encode to wide encodings 82 @ conditional branches accept narrow suffix and encode to short encodings 92 @ unconditional branches accept wide suffix and encode to wide encodings 147 @ unconditional branches accept narrow suffix and encode to short encodings 157 @ unconditional branches accept wide suffix and encode to wide encodings 225 @ conditional branches accept narrow suffix and encode to short encodings 235 @ unconditional branches accept wide suffix and encode to wide encodings
|
/external/python/cpython3/Tools/unicode/ |
D | listcodecs.py | 9 import os, codecs, encodings 36 names = listcodecs(encodings.__path__[0])
|
D | gencjkcodecs.py | 58 for loc, encodings in codecs.items(): 59 for enc in encodings:
|
/external/python/cpython2/Tools/unicode/ |
D | listcodecs.py | 9 import os, codecs, encodings 36 names = listcodecs(encodings.__path__[0])
|
D | gencjkcodecs.py | 58 for loc, encodings in codecs.iteritems(): 59 for enc in encodings:
|
/external/icu/icu4j/perf-tests/data/conversion/ |
D | english.txt | 8 …cters: for example, the European Union alone requires several different encodings to cover all its… 10 …encodings can use the same number for two different characters, or use different numbers for the s…
|
/external/swiftshader/third_party/LLVM/test/MC/Disassembler/ARM/ |
D | invalid-DSB-arm.txt | 10 # Reject invalid encodings. 13 # All other encodings of option are reserved. It is IMPLEMENTATION DEFINED whether options
|
D | invalid-DMB-thumb.txt | 10 # Reject invalid encodings. 13 # All other encodings of option are reserved. It is IMPLEMENTATION DEFINED whether options
|
/external/fonttools/Windows/ |
D | mcmillan.bat | 6 … --upx --onefile --paths "C:\Python23\Lib\encodings;C:\Python23\Lib\site-packages\FontTools\fontTo…
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
D | PKIXCertPath.java | 56 List encodings = new ArrayList(); 57 encodings.add("PkiPath"); 60 encodings.add("PKCS7"); 61 certPathEncodings = Collections.unmodifiableList(encodings);
|