HomeSort by relevance Sort by last modified time
    Searched defs:encoding (Results 101 - 125 of 1576) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 26 * A decorator that handles Content-Encoding.
40 String encoding = getEncoding(message); local
41 if (encoding != null) {
42 return new HttpMessageDecoder(message, encoding);
53 String encoding = message.getHeader(CONTENT_ENCODING); local
54 if (encoding == null) {
56 } else if (GZIP.equalsIgnoreCase(encoding)
57 || ("x-" + GZIP).equalsIgnoreCase(encoding)) {
59 } else if (DEFLATE.equalsIgnoreCase(encoding)) {
65 private HttpMessageDecoder(HttpResponseMessage in, String encoding)
    [all...]
  /external/python/cpython2/Lib/test/crashers/
decref_before_assignment.py 20 encoding = "utf8" variable in class:Ctx1
32 print scanner.encoding.__dict__
36 def encoding(self): member in class:Ctx2
  /external/python/cpython2/Lib/test/
test_codecencodings_jp.py 3 # Codec encoding tests for Japanese encodings.
11 encoding = 'cp932' variable in class:Test_CP932
27 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
57 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
74 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
82 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 12 encoding = 'cp932' variable in class:TestCP932Map
27 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
34 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
48 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
55 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /external/python/cpython3/Lib/test/
test_codecencodings_jp.py 3 # Codec encoding tests for Japanese encodings.
10 encoding = 'cp932' variable in class:Test_CP932
44 encoding = 'euc_jis_2004' variable in class:Test_EUC_JIS_2004
54 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
64 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
78 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
92 encoding = 'shift_jis_2004' variable in class:Test_SJIS_2004
110 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 11 encoding = 'cp932' variable in class:TestCP932Map
26 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
33 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
47 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
54 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /external/python/cpython3/Modules/_io/clinic/
_iomodule.c.h 6 "open($module, /, file, mode=\'r\', buffering=-1, encoding=None,\n"
24 "In text mode, if encoding is not specified the encoding used is platform\n"
26 "current locale encoding. (For reading and writing raw bytes use binary\n"
27 "mode and leave encoding unspecified.) The available modes are:\n"
53 "platform-dependent encoding or using the specified encoding if given.\n"
74 "encoding is the name of the encoding used to decode or encode the\n"
75 "file. This should only be used in text mode. The default encoding is\n
146 const char *encoding = NULL; local
    [all...]
  /external/v8/src/
background-parsing-task.h 27 ScriptCompiler::StreamedSource::Encoding encoding)
28 : source_stream(source_stream), encoding(encoding) {}
34 ScriptCompiler::StreamedSource::Encoding encoding; member in struct:v8::internal::StreamedSource
  /external/vixl/src/aarch32/
operands-aarch32.cc 242 uint32_t encoding = 0; local
248 encoding |= set_bit;
260 encoding |= set_bit;
270 SetEncodedImmediate(encoding);
339 uint64_t encoding = 0; local
341 encoding <<= 8;
343 encoding |= 0xff;
346 return encoding;
  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2Impl.java 29 private String encoding; field in class:Locator2Impl
43 * <em>encoding</em> and <em>version</em>strings are copied,
55 encoding = l2.getEncoding ();
74 * Returns the current value of the encoding property.
76 * @return the current value of the encoding property.
81 { return encoding; }
98 * Assigns the current value of the encoding property.
100 * @param encoding the new "encoding" value
103 public void setEncoding (String encoding)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
ContentTransferEncodingField.java 25 * Represents a <code>Content-Transfer-Encoding</code> field.
32 * The <code>7bit</code> encoding.
36 * The <code>8bit</code> encoding.
40 * The <code>binary</code> encoding.
44 * The <code>quoted-printable</code> encoding.
48 * The <code>base64</code> encoding.
52 private String encoding; field in class:ContentTransferEncodingField
54 protected ContentTransferEncodingField(String name, String body, String raw, String encoding) {
56 this.encoding = encoding;
84 final String encoding = body.trim().toLowerCase(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
format.h 35 /** Represents the type of encoding used in a stream or accepted by a sink. \since 1.0 */
38 /**< Any encoding format, PCM or compressed */
56 /**< Valid encoding types must be less than this value */
59 /**< Represents an invalid encoding */
62 /** Returns a printable string representing the given encoding type. \since 1.0 */
66 pa_encoding_t pa_encoding_from_string(const char *encoding);
70 pa_encoding_t encoding; member in struct:pa_format_info
71 /**< The encoding used for the format */
74 /**< Additional encoding-specific properties such as sample rate, bitrate, etc. */
77 /** Allocates a new \a pa_format_info structure. Clients must initialise at least the encoding field themselves. *
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_codecencodings_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_codecencodings_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecencodings_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codecencodings_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, **kw):
156 ``encoding`` is the character encoding for str instances, default is UTF-8.
170 encoding == 'utf-8' and default is None and not kw):
177 separators=separators, encoding=encoding,
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java 31 * describes techniques to allow the encoding of non-ASCII text in
53 * Applies an RFC 1522 compliant encoding scheme to the given string of text with the
63 * @throws EncoderException thrown if there is an error conidition during the Encoding
68 * encoding names</a>
122 throw new DecoderException("RFC 1522 violation: encoding token not found");
124 String encoding = text.substring(from, to); local
125 if (!getEncoding().equalsIgnoreCase(encoding)) {
127 encoding + " encoded content");
137 * Returns the codec name (referred to as encoding in the RFC 1522)
144 * Encodes an array of bytes using the defined encoding schem
    [all...]
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 70 * 2.If a Transfer-Encoding header field (section 14.41) is present and has any value other
78 * Transfer-Encoding
82 * Transfer-Encoding header field and a Content-Length header field,
117 * Transfer-coding values are used to indicate an encoding transformation that
136 * the TE header field (section 14.39) and in the Transfer-Encoding header field (section 14.41).
146 * <h>14.41 Transfer-Encoding</h>
148 * The Transfer-Encoding general-header field indicates what (if any) type of transformation has
154 * Transfer-Encoding = "Transfer-Encoding" ":" 1#transfer-coding
158 * the order in which they were applied. Additional information about the encoding parameters
216 String encoding = encodings[i].getName(); local
    [all...]
  /external/elfutils/backends/
ppc64_retval.c 120 Dwarf_Word encoding; local
123 &encoding) != 0)
126 if (encoding == DW_ATE_float || encoding == DW_ATE_complex_float)

Completed in 665 milliseconds

1 2 3 45 6 7 8 91011>>