Searched refs:encodings (Results 1 - 25 of 69) sorted by relevance

123

/external/libvncserver/utils/
H A Dbdf2c.pl3 @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/
H A DCharsetSelector.java43 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[
[all...]
/external/apache-http/src/org/apache/http/impl/entity/
H A DLaxContentLengthStrategy.java157 * If multiple encodings have been applied to an entity, the transfer- codings MUST be listed in
205 HeaderElement[] encodings = null;
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/expat/lib/
H A Dxmltok_ns.c29 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/
H A Dthumb2-ldrb-ldrh.s4 @ Thumb2 LDRS?[BH] are not valid when Rt == PC (these encodings are used for
H A Dthumb2-branches.s4 @ 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
H A Dbasic-arm-instructions-v8.s1 @ New ARMv8 A32 encodings
H A Dthumbv7m.s7 @ These tests test instruction encodings specific to ARMv7m.
H A Dthumbv7em.s7 @ These tests test instruction encodings specific to ARMv7E-M.
/external/icu/icu4c/source/test/cintltst/
H A Ducnvseltst.c103 * 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, argument
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_encoding
[all...]
/external/icu/icu4c/source/data/mappings/
H A Ducmcore.mk3 # 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/
H A Darm64-separator.s7 ; tell it to show encodings. That will result in the two 'mov' instructions
/external/libvterm/src/
H A Dencoding.c207 encodings[] = { variable in typeref:struct:__anon9661
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/
H A Ducnvsel.cpp12 // 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[
549 char **encodings = local
[all...]
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
H A DTestSelection.java97 private void verifyResultUTF16(String s, List<String> encodings, List<String> result, argument
99 for (String enc : encodings) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DPKIXCertPath.java57 List encodings = new ArrayList();
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)
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/
H A Dssvnc_cmd74 # -encodings <ENCODING-LIST> (e.g. "tight copyrect")
276 $VNCVIEWERCMD -encodings 'copyrect tight zrle zlib hextile' "$@"
278 ss_vncviewer "$@" -encodings 'copyrect tight zrle zlib hextile'
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dfldcw_check.S18 # these are instructions with similar encodings to fldcw
/external/valgrind/exp-bbv/tests/x86/
H A Dfldcw_check.S20 # these are instructions with similar encodings to fldcw
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DGzipFilter.java323 String[] encodings = getEncodings(encodingHeader);
324 if (encodings != null)
326 for (int i=0; i< encodings.length; i++)
328 if (encodings[i].toLowerCase(Locale.ENGLISH).contains(GZIP))
330 if (isEncodingAcceptable(encodings[i]))
337 if (encodings[i].toLowerCase(Locale.ENGLISH).contains(DEFLATE))
339 if (isEncodingAcceptable(encodings[i]))
/external/libvncserver/webclients/novnc/include/
H A Drfb.js50 encodings = [
207 for (i=0; i < encodings.length; i+=1) {
208 encHandlers[encodings[i][1]] = encHandlers[encodings[i][0]];
209 encNames[encodings[i][1]] = encodings[i][0];
210 encStats[encodings[i][1]] = [0, 0];
316 for (i=0; i < encodings.length; i+=1) {
317 encStats[encodings[i][1]][0] = 0;
331 for (i=0; i < encodings
[all...]
/external/libvncserver/x11vnc/misc/
H A Drx11vnc126 $viewer -encodings "$tunnel_encodings" "localhost:$port"
/external/skia/experimental/PdfViewer/
H A DSkPdfFont.cpp448 static SkTDict<SkPdfEncoding*> encodings(10);
449 if (encodings.count() == 0) {
450 encodings.set("Identity-H", SkPdfIdentityHEncoding::instance());
453 return encodings;
/external/apache-http/android/src/android/net/http/
H A DHeaders.java178 HeaderElement[] encodings = BasicHeaderValueParser.DEFAULT
183 int len = encodings.length;
188 .equalsIgnoreCase(encodings[len - 1].getName()))) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DCipherSpi.java30 // import org.bouncycastle.crypto.encodings.ISO9796d1Encoding;
32 import org.bouncycastle.crypto.encodings.OAEPEncoding;
33 import org.bouncycastle.crypto.encodings.PKCS1Encoding;

Completed in 879 milliseconds

123