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

1 2

  /external/chromium_org/third_party/icu/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/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;
  /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...]
xmlrpclib.py 782 self._encoding = "utf-8"
803 self._encoding = encoding
870 if self._encoding:
871 data = _decode(data, self._encoding)
926 if self._encoding:
927 data = _decode(data, self._encoding)
    [all...]
_pyio.py     [all...]
doctest.py 223 _encoding = getattr(sys.__stdout__, 'encoding', None) or 'utf-8' variable
233 s = s.encode(_encoding, 'backslashreplace')
    [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...]
xmlrpclib.py 782 self._encoding = "utf-8"
803 self._encoding = encoding
870 if self._encoding:
871 data = _decode(data, self._encoding)
926 if self._encoding:
927 data = _decode(data, self._encoding)
    [all...]
_pyio.py     [all...]
  /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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp     [all...]
tinyxml.cpp 1380 const char * _encoding,
1385 encoding = _encoding;
1392 const std::string& _encoding,
1397 encoding = _encoding;
    [all...]
tinyxml.h     [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp     [all...]
tinyxml.cpp 1380 const char * _encoding,
1385 encoding = _encoding;
1392 const std::string& _encoding,
1397 encoding = _encoding;
    [all...]
tinyxml.h     [all...]
  /external/tinyxml/
tinyxmlparser.cpp     [all...]
tinyxml.cpp 1388 const char * _encoding,
1393 encoding = _encoding;
1400 const std::string& _encoding,
1405 encoding = _encoding;
    [all...]
tinyxml.h     [all...]
  /external/chromium_org/third_party/simplejson/
encoder.py 226 _encoding = self.encoding
227 if (_encoding is not None
228 and not (_encoding == 'utf-8')):
229 o = o.decode(_encoding)
264 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
266 o = o.decode(_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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ossaudiodev.py 31 encoding = au._encoding
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ossaudiodev.py 31 encoding = au._encoding

Completed in 767 milliseconds

1 2