/external/chromium-trace/catapult/third_party/html5lib-python/utils/ |
iana_parse.py | 7 encodings = [] 14 if enc.lower not in encodings: 15 encodings.append(enc.lower()) 18 sys.stdout.write("encodings = frozenset((\n") 19 for enc in encodings:
|
/external/libvncserver/utils/ |
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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetSelector.java | 43 private String[] encodings; // encodings users ask to use field in class:CharsetSelector 47 int columns = (encodings.length + 31) / 32; 55 for (int i = 0; i < encodings.length; ++i) { 56 Charset testCharset = CharsetICU.forNameICU(encodings[i]); 71 // handle excluded encodings 103 // encodings are legit 106 int columns = (encodings.length + 31) / 32; 114 for (int i = 0; i < 32 && k < encodings.length; i++, k++) { 116 result.add(encodings[k]) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ |
test_util.py | 2 import encodings namespace 3 import encodings.aliases namespace 14 fn = util.imp_find_module('encodings.aliases')[1] 15 self.assertTrue(encodings.aliases.__file__.startswith(fn)) 18 imps = list(util.imp_walk('encodings.aliases')) 21 self.assertEqual(imps[0][0], 'encodings') 22 self.assertTrue(encodings.__file__.startswith(imps[0][1][1])) 25 self.assertTrue(encodings.aliases.__file__.startswith(imps[1][1][1]))
|
/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/chromium-trace/catapult/third_party/coverage/coverage/ |
__init__.py | 22 # the encodings.utf_8 module is loaded and then unloaded, I don't know why. 24 import encodings.utf_8 namespace
|
/external/chromium-trace/catapult/third_party/coverage/coverage/fullcoverage/ |
encodings.py | 4 """Imposter encodings module that installs a coverage-style tracer. 6 This is NOT the encodings module; it is an imposter that sets up tracing 7 instrumentation and then replaces itself with the real encodings module. 52 # sys.modules; and re-import "encodings", which will be the real package 59 del sys.modules['encodings'] 60 import encodings namespace
|
/external/expat/lib/ |
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];
|
/external/llvm/test/MC/ARM/ |
thumb2-ldrb-ldrh.s | 4 @ Thumb2 LDRS?[BH] are not valid when Rt == PC (these encodings are used for
|
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
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/h8300/ |
pr3134.d | 2 # name: Check that both encodings of mov.l (disp32) are accepted (PR 3134)
|
/external/icu/icu4c/source/test/cintltst/ |
ucnvseltst.c | 103 * ucnvsel_open() does not support "no encodings": 104 * Given 0 encodings it will open a selector for all available ones. 270 getResultsManually(const char** encodings, int32_t num_encodings, 288 test_converter = ucnv_open(encodings[i], &status); 298 encIndex = findIndex(encodings[i]); 398 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); local 400 uprv_free((void *)encodings); 410 * set of encodings, so there is no need to test every combination. 417 sel_rt = ucnvsel_open(encodings, num_encodings, 427 sel_fb = ucnvsel_open(encodings, num_encodings [all...] |
/external/icu/icu4c/source/data/mappings/ |
ucmcore.mk | 3 # A list of UCM's to build for core MIME/Unix/Windows encodings 5 # 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/libvterm/src/ |
encoding.c | 207 encodings[] = { variable in typeref:struct:__anon17315 218 for(int i = 0; encodings[i].designation; i++) 219 if(encodings[i].type == type && encodings[i].designation == designation) 220 return encodings[i].enc;
|
/external/icu/icu4c/source/common/ |
ucnvsel.cpp | 12 // Purpose: To generate a list of encodings capable of handling 21 * The goal is, given a unicode string, find the encodings 24 * stores all encodings a codepoint can map to 52 char** encodings; // which encodings did user ask to use? member in struct:UConverterSelector 81 UConverter* test_converter = ucnv_open(result->encodings[i], status); 121 // handle excluded encodings! Simply set their values to all 1's in the upvec 174 newSelector->encodings = 176 if (!newSelector->encodings) { 180 newSelector->encodings[0] = NULL; // now we can call ucnvsel_close( 549 char **encodings = local [all...] |
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
TestSelection.java | 97 private void verifyResultUTF16(String s, List<String> encodings, List<String> result, 99 for (String enc : encodings) { [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidLocaleTest.java | 113 // List of encodings currently required for Android. 114 String[] encodings = new String[] { local 123 // Additional encodings included in standard ICU 162 for (String encoding : encodings) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
__init__.py | 1 """ Standard "encodings" Package 32 from encodings import aliases 83 # try in the encodings package, then at top-level. 98 # module with side-effects that is not in the 'encodings' package. 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
|
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
__init__.py | 1 """ Standard "encodings" Package 32 from encodings import aliases 83 # try in the encodings package, then at top-level. 98 # module with side-effects that is not in the 'encodings' package. 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 1 """ Standard "encodings" Package 32 from encodings import aliases 83 # try in the encodings package, then at top-level. 98 # module with side-effects that is not in the 'encodings' package. 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 1 """ Standard "encodings" Package 32 from encodings import aliases 83 # try in the encodings package, then at top-level. 98 # module with side-effects that is not in the 'encodings' package. 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/aarch64/ |
unallocated-encoding.d | 3 #name: Disassembler detects unallocated instruction encodings.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
thumb2_ldmstm_bad.s | 4 @ UNPREDICTABLE Thumb-2 encodings of LDM/LDMIA/LDMFD as specified 15 @ UNPREDICTABLE Thumb-2 encodings of STM/STMIA/STMEA as specified
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
PKIXCertPath.java | 57 List encodings = new ArrayList(); typedefs 58 encodings.add("PkiPath"); 60 // encodings.add("PEM"); 62 encodings.add("PKCS7"); 63 certPathEncodings = Collections.unmodifiableList(encodings); 228 * Returns an iteration of the encodings supported by this 233 * @return an Iterator over the names of the supported encodings (as Strings)
|