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

1 2

  /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
200 HeaderElement[] encodings = null; local
202 encodings = transferEncodingHeader.getElements();
210 for (int i = 0; i < encodings.length; i++) {
211 String encoding = encodings[i].getName();
220 int len = encodings.length;
224 encodings[len - 1].getName()))) {
  /frameworks/base/tests/CoreTests/android/core/
LocaleTest.java 163 // List of encodings currently required for Android.
164 String[] encodings = new String[] { local
173 // Additional encodings included in standard ICU
214 for (int i = 0; i < encodings.length; i++) {
215 assertTrue("Charset " + encodings[i] + " must be supported",
216 Charset.isSupported(encodings[i]));
218 Charset cs = Charset.forName(encodings[i]);
  /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];
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 88 static final List encodings = Collections.unmodifiableList( field in class:X509CertPathImpl
161 if (!encodings.contains(encoding)) {
215 if (!encodings.contains(encoding)) {
274 if (!encodings.contains(encoding)) {
297 return encodings.iterator();
308 * of ASN.1 encodings of X.509 certificates provided via
314 List encodings = (List) in.content;
315 int size = encodings.size();
322 Certificate.ASN1.decode((byte[]) encodings.get(i))));
342 List encodings = new ArrayList(size)
    [all...]
Cache.java 102 // corresponds to the encoding contained in encodings[N] which corresponds
105 // array containing the hash codes of encodings
107 // array containing the encodings of the cached objects
108 private final byte[][] encodings; field in class:Cache
137 encodings = new byte[cache_size][];
244 if (Arrays.equals(encoding, encodings[i])) {
329 encodings[index] = encoding;
X509CertFactoryImpl.java 117 * via input stream encodings.
429 return X509CertPathImpl.encodings.iterator();
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
ucnvseltst.c 101 * ucnvsel_open() does not support "no encodings":
102 * Given 0 encodings it will open a selector for all available ones.
268 getResultsManually(const char** encodings, int32_t num_encodings,
286 test_converter = ucnv_open(encodings[i], &status);
296 encIndex = findIndex(encodings[i]);
396 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); local
398 uprv_free((void *)encodings);
408 * set of encodings, so there is no need to test every combination.
415 sel_rt = ucnvsel_open(encodings, num_encodings,
425 sel_fb = ucnvsel_open(encodings, num_encodings
    [all...]
  /external/icu4c/test/cintltst/
ucnvseltst.c 102 * ucnvsel_open() does not support "no encodings":
103 * Given 0 encodings it will open a selector for all available ones.
269 getResultsManually(const char** encodings, int32_t num_encodings,
287 test_converter = ucnv_open(encodings[i], &status);
297 encIndex = findIndex(encodings[i]);
397 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); local
399 uprv_free((void *)encodings);
409 * set of encodings, so there is no need to test every combination.
416 sel_rt = ucnvsel_open(encodings, num_encodings,
426 sel_fb = ucnvsel_open(encodings, num_encodings
    [all...]
  /external/chromium/third_party/icu/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,
ucmlocal.mk 1 # Note: A number of encodings are handled with purely algorithmic converters,
26 # * Mac encodings : MacRoman, MacCyrillic
34 # - Mac encodings (other than Roman and Cyrillic) : extremly rare
  /external/icu4c/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,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
IndexedPKIXParameters.java 41 final Map<Bytes, TrustAnchor> encodings field in class:IndexedPKIXParameters
57 encodings.put(encoded, anchor);
106 anchor = encodings.get(encoded);
132 return encodings.containsKey(encoded);
  /external/bluetooth/glib/docs/reference/glib/
Makefile.am 52 file-name-encodings.png \
77 file-name-encodings.png \
78 file-name-encodings.sxd \
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPath.java 51 List encodings = new ArrayList(); typedefs
52 encodings.add("PkiPath");
53 encodings.add("PEM");
54 encodings.add("PKCS7");
55 certPathEncodings = Collections.unmodifiableList(encodings);
220 * Returns an iteration of the encodings supported by this
225 * @return an Iterator over the names of the supported encodings (as Strings)
JCERSACipher.java 8 import org.bouncycastle.crypto.encodings.ISO9796d1Encoding;
9 import org.bouncycastle.crypto.encodings.OAEPEncoding;
10 import org.bouncycastle.crypto.encodings.PKCS1Encoding;
JDKDigestSignature.java 43 import org.bouncycastle.crypto.encodings.PKCS1Encoding;
  /external/chromium/third_party/icu/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
50 char** encodings; // which encodings did user ask to use? member in struct:UConverterSelector
79 UConverter* test_converter = ucnv_open(result->encodings[i], status);
119 // handle excluded encodings! Simply set their values to all 1's in the upvec
172 newSelector->encodings =
174 if (!newSelector->encodings) {
179 newSelector->encodings[0] = NULL; // now we can call ucnvsel_close(
550 char **encodings = local
    [all...]
  /external/icu4c/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
50 char** encodings; // which encodings did user ask to use? member in struct:UConverterSelector
79 UConverter* test_converter = ucnv_open(result->encodings[i], status);
119 // handle excluded encodings! Simply set their values to all 1's in the upvec
172 newSelector->encodings =
174 if (!newSelector->encodings) {
178 newSelector->encodings[0] = NULL; // now we can call ucnvsel_close(
547 char **encodings = local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_iconv.c 109 } encodings[] = { variable in typeref:struct:__anon5892
182 for ( i = 0; i < SDL_arraysize(encodings); ++i ) {
183 if ( SDL_strcasecmp(fromcode, encodings[i].name) == 0 ) {
184 src_fmt = encodings[i].format;
189 if ( SDL_strcasecmp(tocode, encodings[i].name) == 0 ) {
190 dst_fmt = encodings[i].format;
  /frameworks/base/core/java/android/net/http/
Headers.java 181 HeaderElement[] encodings = BasicHeaderValueParser.DEFAULT local
186 int len = encodings.length;
191 .equalsIgnoreCase(encodings[len - 1].getName()))) {
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 1 package org.bouncycastle.crypto.encodings;
ISO9796d1Encoding.java 1 package org.bouncycastle.crypto.encodings;
OAEPEncoding.java 1 package org.bouncycastle.crypto.encodings;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
RSADigestSigner.java 17 import org.bouncycastle.crypto.encodings.PKCS1Encoding;
  /external/webkit/WebCore/
Android.derived.mk 121 $(LOCAL_PATH)/platform/android/android-encodings.txt

Completed in 566 milliseconds

1 2