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

1 2 3 4 5 6

  /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_org/base/i18n/
icu_encoding_detection.h 21 // Detect all possible encodings of |text| and put their names
22 // (as returned by ICU) in |encodings|. Returns true on success.
23 // Note: this function may return encodings that may fail to decode |text|,
26 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_org/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_org/net/ftp/
ftp_directory_listing_parser.cc 100 std::vector<std::string> encodings; local
101 if (!base::DetectAllEncodings(text, &encodings))
105 for (size_t i = 0; i < encodings.size(); i++) {
108 encodings[i].c_str(),
114 encodings[i],
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/fullcoverage/
encodings.py 1 """Imposter encodings module that installs a coverage-style tracer.
3 This is NOT the encodings module; it is an imposter that sets up tracing
4 instrumentation and then replaces itself with the real encodings module.
41 # sys.modules; and re-import "encodings", which will be the real package
49 del sys.modules['encodings']
50 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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/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,
  /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/chromium_org/chrome/browser/ui/webui/options/
font_settings_handler.cc 209 const std::vector<CharacterEncoding::EncodingInfo>* encodings; local
211 encodings = CharacterEncoding::GetCurrentDisplayEncodings(
215 DCHECK(encodings);
216 DCHECK(!encodings->empty());
219 for (it = encodings->begin(); it != encodings->end(); ++it) {
  /external/chromium_org/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) {
178 newSelector->encodings[0] = NULL; // now we can call ucnvsel_close(
547 char **encodings = local
    [all...]
  /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...]
  /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/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,
  /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/chromium_org/chrome/browser/search_engines/
template_url_service_test_util.h 75 const std::string& encodings,
util.h 121 bool DeDupeEncodings(std::vector<std::string>* encodings);
  /external/chromium_org/chrome/common/extensions/docs/server2/
docs_server_utils.py 44 there are also latin-1 encodings in there for some reason. Fall back to that.
  /external/llvm/test/MC/ARM/
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
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 18 # these are instructions with similar encodings to fldcw

Completed in 925 milliseconds

1 2 3 4 5 6