| /frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
| WebView.java | 113 public void loadData(String data, String mimeType, String encoding) { 117 String mimeType, String encoding, String failUrl) {
|
| /libcore/luni/src/main/java/java/security/cert/ |
| CertificateFactory.java | 206 * (as Strings). The first element is the default encoding scheme to apply. 217 * {@code InputStream}. The default encoding scheme is applied. 235 * {@code InputStream} and the specified encoding scheme. 239 * specified encoding. 240 * @param encoding 241 * encoding of the data in the input stream. 248 public final CertPath generateCertPath(InputStream inStream, String encoding) 250 return spiImpl.engineGenerateCertPath(inStream, encoding); 255 * encoding is the default encoding [all...] |
| /system/media/opensles/libopensles/ |
| IMetadataExtraction.c | 66 key.encoding = SL_CHARACTERENCODING_UTF8; 105 value.encoding = SL_CHARACTERENCODING_UTF8;
|
| /cts/tools/dasm/src/dasm/ |
| Main.java | 53 private static String encoding = null; field in class:Main 69 if (encoding == null) 72 ir = new InputStreamReader(fs, encoding); 219 encoding = args[i]; 232 .println("dasm [-d <outpath>] [-g] [-h] [-e <encoding>] <file>" 235 + " -e - codepage for inputfile encoding\n"
|
| /cts/tools/utils/cts/ |
| tools.py | 71 self.encoding = 'UTF-8' 106 doc.writexml(writer, addindent=' ', newl='\n', encoding=self.encoding) 172 doc.writexml(stream, addindent=' ', newl='\n', encoding='UTF-8')
|
| /development/testrunner/ |
| android_manifest.py | 109 self._dom.writexml(open(self._manifest_path, mode='w'), encoding='utf-8')
|
| /external/chromium/third_party/icu/public/i18n/unicode/ |
| ucsdet.h | 7 * encoding: US-ASCII 32 * charset or encoding of character data in an unknown text format. 93 * @param textIn the input text of unknown encoding. . 104 /** Set the declared encoding for charset detection. 105 * The declared encoding of an input text is an encoding obtained 109 * How and whether the declared encoding will be used during the 113 * @param encoding an encoding for the current data obtained from 116 * @param length the length of the encoding name, or -1 if the name strin [all...] |
| /external/chromium/third_party/icu/source/test/intltest/ |
| rbbitst.h | 59 UChar *ReadAndConvertFile(const char *fileName, int &ulen, const char *encoding, UErrorCode &status);
|
| /external/icu4c/i18n/unicode/ |
| ucsdet.h | 7 * encoding: US-ASCII 34 * charset or encoding of character data in an unknown text format. 114 * @param textIn the input text of unknown encoding. . 125 /** Set the declared encoding for charset detection. 126 * The declared encoding of an input text is an encoding obtained 130 * How and whether the declared encoding will be used during the 134 * @param encoding an encoding for the current data obtained from 137 * @param length the length of the encoding name, or -1 if the name strin [all...] |
| /external/icu4c/test/intltest/ |
| rbbitst.h | 59 UChar *ReadAndConvertFile(const char *fileName, int &ulen, const char *encoding, UErrorCode &status);
|
| /external/webkit/WebCore/icu/unicode/ |
| ucsdet.h | 7 * encoding: US-ASCII 32 * charset or encoding of character data in an unknown text format. 93 * @param textIn the input text of unknown encoding. . 104 /** Set the declared encoding for charset detection. 105 * The declared encoding of an input text is an encoding obtained 109 * How and whether the declared encoding will be used during the 113 * @param encoding an encoding for the current data obtained from 116 * @param length the length of the encoding name, or -1 if the name strin [all...] |
| /external/webkit/WebKit/gtk/webkit/ |
| webkitwebresource.h | 64 const gchar *encoding,
|
| /external/webkit/WebKit/win/ |
| WebDataSource.cpp | 89 /* [retval][out] */ BSTR* /*encoding*/) 96 /* [in] */ BSTR /*encoding*/) 220 String encoding = m_loader->overrideEncoding(); local 221 if (encoding.isNull()) 222 encoding = m_loader->response().textEncodingName(); 224 *name = BString(encoding).release();
|
| /frameworks/base/include/media/ |
| mediascanner.h | 82 void convertValues(uint32_t encoding); 85 // cached name and value strings, for native encoding support. 89 // default encoding based on MediaScanner::mLocale string
|
| /frameworks/base/include/tts/ |
| TtsEngine.h | 155 // @param[inout] encoding in: the desired audio sample format 162 virtual tts_result setAudioFormat(AudioSystem::audio_format& encoding, uint32_t& rate,
|
| /libcore/luni/src/main/java/org/apache/xml/serializer/ |
| ToTextSAXHandler.java | 67 public ToTextSAXHandler(ContentHandler hdlr, LexicalHandler lex, String encoding) 69 super(hdlr, lex, encoding); 75 public ToTextSAXHandler(ContentHandler handler, String encoding) 77 super(handler,encoding);
|
| ToTextStream.java | 277 final String encoding = getEncoding(); local 305 new Object[] { integralValue, encoding }); 316 // not in the encoding and not a high char in 318 if (encoding != null) { 319 /* The output encoding is known, 323 // not in the encoding, so write out a character reference 334 new Object[] { integralValue, encoding }); 341 /* The output encoding is not known,
|
| /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/ |
| ContentTypeParser.java | 131 public ContentTypeParser(java.io.InputStream stream, String encoding) { 132 try { jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); } 143 public void ReInit(java.io.InputStream stream, String encoding) { 144 try { jj_input_stream.ReInit(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
|
| /external/expat/lib/ |
| expat.h | 180 parameter will be NULL for text declarations. The encoding 188 const XML_Char *encoding, 202 /* Constructs a new parser; encoding is the encoding specified by the 206 XML_ParserCreate(const XML_Char *encoding); variable 220 XML_ParserCreateNS(const XML_Char *encoding, XML_Char namespaceSeparator); 233 XML_ParserCreate_MM(const XML_Char *encoding, 247 XML_ParserReset(XML_Parser parser, const XML_Char *encoding); 477 The convert function may be NULL if the encoding is a single-byte 478 encoding, that is if map[b] >= -1 for all bytes b [all...] |
| /external/icu4c/samples/uresb/ |
| uresb.c | 9 * encoding: US-ASCII 42 /*--locale sr_YU and --encoding cp855 47 static const char *encoding = NULL; variable 112 encoding = options[3].value; 114 encoding = NULL; 145 outerr = u_finit(stderr, locale, encoding); 146 out = u_finit(stdout, locale, encoding);
|
| /external/nist-sip/java/gov/nist/core/ |
| GenericObjectList.java | 350 StringBuffer encoding = new StringBuffer(); 357 encoding.append(gobj.encode()); 359 encoding.append(obj.toString()); 362 encoding.append(separator); 367 return encoding.toString(); 378 * Set the separator (for encoding the list)
|
| /external/webkit/WebCore/inspector/ |
| InspectorResource.cpp | 300 TextEncoding encoding(textEncodingName); 301 if (!encoding.isValid()) 302 encoding = WindowsLatin1Encoding(); 303 return encoding.decode(buffer->data(), buffer->size()); 328 *textEncodingName = cachedResource->encoding();
|
| /external/tinyxml/ |
| tinyxml.cpp | 935 bool TiXmlDocument::LoadFile( TiXmlEncoding encoding ) 940 if ( buf.buffer && LoadFile( buf.buffer, encoding ) ) 958 bool TiXmlDocument::LoadFile( const char* filename, TiXmlEncoding encoding ) 1075 Parse( data.c_str(), 0, encoding ); 1393 encoding = _encoding; 1405 encoding = _encoding; 1431 if ( !encoding.empty() ) 1432 fprintf (cfile, "encoding=\"%s\" ", encoding.c_str ()); 1448 if ( !encoding.empty() [all...] |
| /frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
| CdmaSMSDispatcher.java | 367 int encoding = android.telephony.SmsMessage.ENCODING_UNKNOWN; local 371 if (encoding != details.codeUnitSize 372 && (encoding == android.telephony.SmsMessage.ENCODING_UNKNOWN 373 || encoding == android.telephony.SmsMessage.ENCODING_7BIT)) { 374 encoding = details.codeUnitSize; 400 if (encoding == android.telephony.SmsMessage.ENCODING_7BIT) {
|
| /external/elfutils/tests/ |
| run-show-die-info.sh | 48 Attrs : name byte_size encoding 72 Attrs : name byte_size encoding 116 Attrs : name byte_size encoding 146 Attrs : name byte_size encoding 157 Attrs : name byte_size encoding 178 Attrs : name byte_size encoding 210 Attrs : name byte_size encoding 232 Attrs : name byte_size encoding 248 Attrs : name byte_size encoding 259 Attrs : name byte_size encoding [all...] |