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

1 2 3 4 5 6 7

  /external/fonttools/Doc/source/
encodings.rst 2 encodings
5 .. automodule:: fontTools.encodings
12 .. automodule:: fontTools.encodings.codecs
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
Makefile 20 MODULES=encodings.cp437,encodings.gbk,encodings.utf_16,encodings.utf_8,encodings.utf_16_le,encodings.latin_1,encodings.ascii
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
gencjkcodecs.py 58 for loc, encodings in codecs.iteritems():
59 for enc in encodings:
listcodecs.py 9 import os, codecs, encodings
36 names = listcodecs(encodings.__path__[0])
  /external/python/cpython2/Tools/unicode/
gencjkcodecs.py 58 for loc, encodings in codecs.iteritems():
59 for enc in encodings:
listcodecs.py 9 import os, codecs, encodings
36 names = listcodecs(encodings.__path__[0])
  /external/python/cpython3/Tools/unicode/
gencjkcodecs.py 58 for loc, encodings in codecs.items():
59 for enc in encodings:
listcodecs.py 9 import os, codecs, encodings
36 names = listcodecs(encodings.__path__[0])
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetSelector.java 45 private String[] encodings; // encodings users ask to use field in class:CharsetSelector
49 int columns = (encodings.length + 31) / 32;
57 for (int i = 0; i < encodings.length; ++i) {
58 Charset testCharset = CharsetICU.forNameICU(encodings[i]);
73 // handle excluded encodings
105 // encodings are legit
108 int columns = (encodings.length + 31) / 32;
116 for (int i = 0; i < 32 && k < encodings.length; i++, k++) {
118 result.add(encodings[k])
    [all...]
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 157 * If multiple encodings have been applied to an entity, the transfer- codings MUST be listed in
205 HeaderElement[] encodings = null; local
207 encodings = transferEncodingHeader.getElements();
215 for (int i = 0; i < encodings.length; i++) {
216 String encoding = encodings[i].getName();
225 int len = encodings.length;
229 encodings[len - 1].getName()))) {
  /external/curl/docs/cmdline-opts/
raw.d 7 encodings and instead makes them passed on unaltered, raw.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
AudioStringsHelper.java 73 static public String buildEncodingsStr(int encodings[]) {
75 for(int encodingIndex = 0; encodingIndex < encodings.length; encodingIndex++) {
76 builder.append(encodingToShortString(encodings[encodingIndex]));
77 if (encodingIndex < encodings.length - 1) {
  /external/fonttools/Lib/fontTools/misc/
encodingTools.py 1 """fontTools.misc.encodingTools.py -- tools for working with OpenType encodings.
6 import fontTools.encodings.codecs
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmltok_ns.c 29 static const ENCODING * const NS(encodings)[] = {
43 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
51 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
87 return NS(encodings)[i];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmltok_ns.c 22 static const ENCODING * const NS(encodings)[] = {
36 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
44 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
80 return NS(encodings)[i];
  /external/expat/lib/
xmltok_ns.c 56 static const ENCODING * const NS(encodings)[] = {
70 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
78 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
114 return NS(encodings)[i];
  /external/python/cpython2/Modules/expat/
xmltok_ns.c 56 static const ENCODING * const NS(encodings)[] = {
70 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
78 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
114 return NS(encodings)[i];
  /external/python/cpython3/Modules/expat/
xmltok_ns.c 56 static const ENCODING * const NS(encodings)[] = {
70 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
78 return initScan(NS(encodings), (const INIT_ENCODING *)enc,
114 return NS(encodings)[i];
  /external/llvm/test/MC/ARM/
thumb2-ldrb-ldrh.s 4 @ Thumb2 LDRS?[BH] are not valid when Rt == PC (these encodings are used for
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
thumb2-ldrb-ldrh.s 4 @ Thumb2 LDRS?[BH] are not valid when Rt == PC (these encodings are used for
  /external/icu/icu4c/source/test/cintltst/
ucnvseltst.c 106 * ucnvsel_open() does not support "no encodings":
107 * Given 0 encodings it will open a selector for all available ones.
273 getResultsManually(const char** encodings, int32_t num_encodings,
291 test_converter = ucnv_open(encodings[i], &status);
301 encIndex = findIndex(encodings[i]);
401 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); local
403 uprv_free((void *)encodings);
413 * set of encodings, so there is no need to test every combination.
420 sel_rt = ucnvsel_open(encodings, num_encodings,
430 sel_fb = ucnvsel_open(encodings, num_encodings
    [all...]
  /external/fonttools/Tests/encodings/
codecs_test.py 4 import fontTools.encodings.codecs # Not to be confused with "import codecs"
  /external/icu/icu4c/source/data/mappings/
ucmcore.mk 5 # A list of UCM's to build for core MIME/Unix/Windows encodings
7 # Note: A number of encodings are handled with purely algorithmic converters,
  /external/llvm/test/MC/AArch64/
arm64-separator.s 7 ; tell it to show encodings. That will result in the two 'mov' instructions
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
arm64-separator.s 7 ; tell it to show encodings. That will result in the two 'mov' instructions

Completed in 1017 milliseconds

1 2 3 4 5 6 7