HomeSort by relevance Sort by last modified time
    Searched full:_encoding (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/jetty/src/java/org/eclipse/jetty/http/
EncodedHttpURI.java 32 private final String _encoding; field in class:EncodedHttpURI
37 _encoding = encoding;
61 return StringUtil.toString(_raw,_scheme,_authority-_scheme-1,_encoding);
69 return StringUtil.toString(_raw,_authority,_path-_authority,_encoding);
77 return StringUtil.toString(_raw,_host,_port-_host,_encoding);
93 return StringUtil.toString(_raw,_path,_param-_path,_encoding);
109 return StringUtil.toString(_raw,_path,_query-_path,_encoding);
117 return StringUtil.toString(_raw,_path,_end-_path,_encoding);
125 return StringUtil.toString(_raw,_param+1,_query-_param-1,_encoding);
133 return StringUtil.toString(_raw,_query+1,_fragment-_query-1,_encoding);
    [all...]
  /external/icu/icu4c/source/test/intltest/
textfile.cpp 21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) :
28 if (U_FAILURE(ec) || _name == 0 || _encoding == 0) {
37 encoding = uprv_malloc(uprv_strlen(_encoding) + 1);
43 uprv_strcpy(encoding, _encoding);
46 encoding = (char*) _encoding;
  /external/jetty/src/java/org/eclipse/jetty/io/bio/
StringEndPoint.java 34 String _encoding=StringUtil.__UTF8; field in class:StringEndPoint
49 _encoding=encoding;
56 byte[] bytes = s.getBytes(_encoding);
74 String s = new String(_bout.toByteArray(),_encoding);
80 throw new IllegalStateException(_encoding)
  /external/jetty/src/java/org/eclipse/jetty/io/
WriterOutputStream.java 36 protected final String _encoding; field in class:WriterOutputStream
43 _encoding=encoding;
50 _encoding=null;
74 if (_encoding==null)
77 _writer.write(new String(b,_encoding));
85 if (_encoding==null)
88 _writer.write(new String(b,off,len,_encoding));
  /external/jetty/src/java/org/eclipse/jetty/client/
ContentExchange.java 39 private String _encoding = "utf-8"; field in class:ContentExchange
56 return _responseContent.toString(_encoding);
90 _encoding = mime.substring(i + 8);
91 i = _encoding.indexOf(';');
93 _encoding = _encoding.substring(0, i);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sunau.py 178 self._encoding = int(_read_u32(file))
179 if self._encoding not in _simple_encodings:
181 if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,
185 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
187 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
189 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
191 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
222 if self._encoding in _simple_encodings:
227 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
229 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
sunau.py 178 self._encoding = int(_read_u32(file))
179 if self._encoding not in _simple_encodings:
181 if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,
185 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
187 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
189 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
191 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
222 if self._encoding in _simple_encodings:
227 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
229 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunau.py 178 self._encoding = int(_read_u32(file))
179 if self._encoding not in _simple_encodings:
181 if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,
185 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
187 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
189 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
191 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
222 if self._encoding in _simple_encodings:
227 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
229 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sunau.py 178 self._encoding = int(_read_u32(file))
179 if self._encoding not in _simple_encodings:
181 if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,
185 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
187 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
189 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
191 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
222 if self._encoding in _simple_encodings:
227 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
229 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
  /external/tinyxml/docs/
classTiXmlDeclaration.html 26 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a1"></a><!-- doxytag: member="TiXmlDeclaration::TiXmlDeclaration" ref="a1" args="(const std::string &amp;_version, const std::string &amp;_encoding, const std::string &amp;_standalone)" -->
27 &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlDeclaration.html#a1">TiXmlDeclaration</a> (const std::string &amp;_version, const std::string &amp;_encoding, const std::string &amp;_standalone)</td></tr>
30 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="a2"></a><!-- doxytag: member="TiXmlDeclaration::TiXmlDeclaration" ref="a2" args="(const char *_version, const char *_encoding, const char *_standalone)" -->
31 &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classTiXmlDeclaration.html#a2">TiXmlDeclaration</a> (const char *_version, const char *_encoding, const char *_standalone)</td></tr>
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
encoder.py 196 _encoding = self.encoding
197 if (_encoding is not None
198 and not (_encoding == 'utf-8')):
199 o = o.decode(_encoding)
231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
233 o = o.decode(_encoding)
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
encoder.py 196 _encoding = self.encoding
197 if (_encoding is not None
198 and not (_encoding == 'utf-8')):
199 o = o.decode(_encoding)
231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
233 o = o.decode(_encoding)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
encoder.py 196 _encoding = self.encoding
197 if (_encoding is not None
198 and not (_encoding == 'utf-8')):
199 o = o.decode(_encoding)
231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
233 o = o.decode(_encoding)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 196 _encoding = self.encoding
197 if (_encoding is not None
198 and not (_encoding == 'utf-8')):
199 o = o.decode(_encoding)
231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
233 o = o.decode(_encoding)
  /external/jetty/src/java/org/eclipse/jetty/http/gzip/
AbstractCompressedStream.java 42 private final String _encoding; field in class:AbstractCompressedStream
59 _encoding=encoding;
241 if (_encoding!=null)
243 setHeader("Content-Encoding", _encoding);
258 setHeader("ETag",etag.substring(0,etag.length()-1)+'-'+_encoding+'"');
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp     [all...]
  /external/tinyxml/
tinyxmlparser.cpp     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
saxutils.py 119 self._encoding = encoding
142 self._encoding)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
saxutils.py 119 self._encoding = encoding
142 self._encoding)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 119 self._encoding = encoding
142 self._encoding)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
saxutils.py 119 self._encoding = encoding
142 self._encoding)
  /external/jetty/src/java/org/eclipse/jetty/servlets/
MultiPartFilter.java 235 String _encoding=StringUtil.__UTF8; field in class:MultiPartFilter.Wrapper
351 _encoding=enc;
362 String contentType = _encoding;
366 contentType = (tmp == null?_encoding:tmp);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ossaudiodev.py 31 encoding = au._encoding
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ossaudiodev.py 31 encoding = au._encoding
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ossaudiodev.py 31 encoding = au._encoding

Completed in 1094 milliseconds

1 2 3