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

1 2 3 4 5

  /external/icu/icu4c/source/test/intltest/
textfile.cpp 23 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) :
30 if (U_FAILURE(ec) || _name == 0 || _encoding == 0) {
39 encoding = uprv_malloc(uprv_strlen(_encoding) + 1);
45 uprv_strcpy(encoding, _encoding);
48 encoding = (char*) _encoding;
  /external/python/cpython2/Lib/
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:
226 if self._encoding in _simple_encodings:
231 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
233 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
  /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...]
  /tools/test/connectivity/acts/framework/acts/libs/proc/
job.py 61 self._stdout_str = self._raw_stdout.decode(encoding=self._encoding)
69 self._stderr_str = self._raw_stderr.decode(encoding=self._encoding)
98 self._encoding = encoding
107 self._encoding)
  /tools/test/connectivity/tools/lab/utils/
job.py 61 self._stdout_str = self._raw_stdout.decode(encoding=self._encoding)
69 self._stderr_str = self._raw_stderr.decode(encoding=self._encoding)
98 self._encoding = encoding
107 self._encoding)
  /external/python/cpython3/Lib/
sunau.py 191 self._encoding = int(_read_u32(file))
192 if self._encoding not in _simple_encodings:
194 if self._encoding in (AUDIO_FILE_ENCODING_MULAW_8,
198 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_8:
200 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_16:
202 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_24:
204 elif self._encoding == AUDIO_FILE_ENCODING_LINEAR_32:
236 if self._encoding in _simple_encodings:
241 if self._encoding == AUDIO_FILE_ENCODING_MULAW_8:
243 elif self._encoding == AUDIO_FILE_ENCODING_ALAW_8
    [all...]
imaplib.py 210 self._encoding = 'ascii'
217 self._encoding = 'utf-8'
926 raise self.abort(bye[-1].decode(self._encoding, 'replace'))
947 name = bytes(name, self._encoding)
952 arg = bytes(arg, self._encoding)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
encoder.py 190 _encoding = self.encoding
191 if (_encoding is not None
192 and not (_encoding == 'utf-8')):
193 o = o.decode(_encoding)
225 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding):
227 o = o.decode(_encoding)
  /external/python/cpython2/Lib/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/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/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...]
  /external/tinyxml/
tinyxmlparser.cpp     [all...]
tinyxml.cpp 1388 const char * _encoding,
1393 encoding = _encoding;
1400 const std::string& _encoding,
1405 encoding = _encoding;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
saxutils.py 95 self._encoding = encoding
101 self._out.write(text.encode(self._encoding, _error_handling))
124 self._encoding)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
saxutils.py 122 self._encoding = encoding
145 self._encoding)
187 content = unicode(content, self._encoding)
192 content = unicode(content, self._encoding)
  /external/python/cpython2/Lib/xml/sax/
saxutils.py 122 self._encoding = encoding
145 self._encoding)
187 content = unicode(content, self._encoding)
192 content = unicode(content, self._encoding)
  /external/python/cpython3/Lib/xml/sax/
saxutils.py 123 self._encoding = encoding
153 self._encoding)
213 content = str(content, self._encoding)
220 content = str(content, self._encoding)

Completed in 540 milliseconds

1 2 3 4 5