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

1 2 3

  /external/smack/src/com/kenai/jbosh/
AttrAccept.java 26 * Array of the accepted encodings.
28 private final String[] encodings; field in class:AttrAccept
38 encodings = val.split("[\\s,]+");
66 for (String str : encodings) {
  /external/chromium/base/i18n/
icu_encoding_detection.h 19 // Detect all possible encodings of |text| and put their names
20 // (as returned by ICU) in |encodings|. Returns true on success.
21 // Note: this function may return encodings that may fail to decode |text|,
24 std::vector<std::string>* encodings);
icu_encoding_detection.cc 38 std::vector<std::string>* encodings) {
53 // encodings should be returned first. However, it doesn't always return
54 // all encodings that properly decode |text|, so we'll append more encodings
55 // later. To make that efficient, keep track of encodings sniffed in this
59 encodings->clear();
75 // decode the text. Drop all encodings with lower confidence level.
79 encodings->push_back(encoding_name);
83 // Append all encodings not included earlier, in arbitrary order.
96 encodings->push_back(name)
    [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
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()))) {
  /external/chromium/chrome/browser/ui/toolbar/
encoding_menu_controller.cc 117 const std::vector<CharacterEncoding::EncodingInfo>* encodings; local
121 // encodings and other encodings.
122 encodings = CharacterEncoding::GetCurrentDisplayEncodings(
126 DCHECK(encodings);
127 DCHECK(!encodings->empty());
131 for (it = encodings->begin(); it != encodings->end(); ++it) {
  /external/chromium/net/ftp/
ftp_directory_listing_parser.cc 84 std::vector<std::string> encodings; local
85 if (!base::DetectAllEncodings(text, &encodings))
89 for (size_t i = 0; i < encodings.size(); i++) {
92 encodings[i].c_str(),
96 encodings[i],
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidLocaleTest.java 109 // List of encodings currently required for Android.
110 String[] encodings = new String[] { local
119 // Additional encodings included in standard ICU
160 for (int i = 0; i < encodings.length; i++) {
161 assertTrue("Charset " + encodings[i] + " must be supported",
162 Charset.isSupported(encodings[i]));
164 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];
  /external/webkit/LayoutTests/fast/encoding/resources/
char-decoding-utils.js 41 for (var i in inputData.encodings) {
43 testDecode(inputData.encodings[i], inputData.encoded[j], inputData.unicode[j]);
  /external/icu4c/test/cintltst/
ucnvseltst.c 105 * ucnvsel_open() does not support "no encodings":
106 * Given 0 encodings it will open a selector for all available ones.
272 getResultsManually(const char** encodings, int32_t num_encodings,
290 test_converter = ucnv_open(encodings[i], &status);
300 encIndex = findIndex(encodings[i]);
400 const char **encodings = getEncodingsFns[testCaseIdx](&num_encodings); local
402 uprv_free((void *)encodings);
412 * set of encodings, so there is no need to test every combination.
419 sel_rt = ucnvsel_open(encodings, num_encodings,
429 sel_fb = ucnvsel_open(encodings, num_encodings
    [all...]
  /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/security/provider/cert/
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][];
224 if (Arrays.equals(encoding, encodings[i])) {
309 encodings[index] = encoding;
X509CertPathImpl.java 106 /** Unmodifiable list of encodings for the API. */
107 static final List<String> encodings = Collections.unmodifiableList(Arrays.asList(new String[] { field in class:X509CertPathImpl
331 return encodings.iterator();
340 * ASN.1 encodings of X.509 certificates provided via PkiPath structure.
376 final List<byte[]> encodings = new ArrayList<byte[]>(size);
382 encodings.add(cp.certificates.get(i).getEncoded());
388 return encodings;
395 * is important all other fields contain pre-calculated encodings.
407 // precalculated ASN.1 encodings for
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_handler.cc 114 const std::vector<CharacterEncoding::EncodingInfo>* encodings; local
116 encodings = CharacterEncoding::GetCurrentDisplayEncodings(
120 DCHECK(encodings);
121 DCHECK(!encodings->empty());
124 for (it = encodings->begin(); it != encodings->end(); ++it) {
  /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
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PKIXCertPath.java 54 List encodings = new ArrayList(); typedefs
55 encodings.add("PkiPath");
57 // encodings.add("PEM");
59 encodings.add("PKCS7");
60 certPathEncodings = Collections.unmodifiableList(encodings);
225 * Returns an iteration of the encodings supported by this
230 * @return an Iterator over the names of the supported encodings (as Strings)
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 18 # these are instructions with similar encodings to fldcw
  /external/valgrind/main/exp-bbv/tests/x86/
fldcw_check.S 20 # these are instructions with similar encodings to fldcw
  /external/chromium/chrome/browser/search_engines/
template_url.cc 312 const std::vector<std::string>& encodings = host.input_encodings(); local
313 for (size_t i = 0; i < encodings.size(); ++i) {
315 encodings[i].c_str(), true,
319 encodings[i].c_str(),
323 input_encoding = encodings[i];
484 const std::vector<std::string>& encodings = host.input_encodings(); local
490 for (size_t i = 0; i < encodings.size(); ++i) {
491 if (base::CodepageToUTF16(unescaped, encodings[i].c_str(),
  /external/webkit/LayoutTests/fast/url/script-tests/
query.js 4 // Regular ASCII case in some different encodings.
  /external/chromium/chrome/browser/webdata/
keyword_table.cc 168 std::vector<std::string> encodings; local
169 base::SplitString(s.ColumnString(9), ';', &encodings);
170 template_url->set_input_encodings(encodings);
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 109 } encodings[] = { variable in typeref:struct:__anon13337
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 180 HeaderElement[] encodings = BasicHeaderValueParser.DEFAULT local
185 int len = encodings.length;
190 .equalsIgnoreCase(encodings[len - 1].getName()))) {
  /external/chromium/chrome/browser/policy/
configuration_policy_pref_store_unittest.cc 542 const char* const encodings = "UTF-16;UTF-8"; local
557 Value::CreateStringValue(encodings));
585 EXPECT_TRUE(StringValue(encodings).Equals(value));
595 const char* const encodings = "UTF-16;UTF-8"; local
608 Value::CreateStringValue(encodings));
635 const char* const encodings = "UTF-16;UTF-8"; local
650 Value::CreateStringValue(encodings));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 1 package org.bouncycastle.crypto.encodings;

Completed in 537 milliseconds

1 2 3