HomeSort by relevance Sort by last modified time
    Searched full:_encoding (Results 1 - 25 of 38) 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...]
  /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...]
  /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>
classTiXmlDeclaration-members.html 63 <tr class="memlist"><td><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><td><a class="el" href="classTiXmlDeclaration.html">TiXmlDeclaration</a></td><td></td></tr>
64 <tr class="memlist"><td><a class="el" href="classTiXmlDeclaration.html#a2">TiXmlDeclaration</a>(const char *_version, const char *_encoding, const char *_standalone)</td><td><a class="el" href="classTiXmlDeclaration.html">TiXmlDeclaration</a></td><td></td></tr>
  /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...]
  /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 656 milliseconds

1 2