HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 276 - 300 of 507) sorted by null

<<11121314151617181920>>

  /dalvik/libcore/luni/src/main/java/java/io/
InputStreamReader.java 37 * provided character converter. The default encoding is taken from the
38 * "file.encoding" system property. {@code InputStreamReader} contains a buffer
57 * {@code in}. This constructor sets the character converter to the encoding
58 * specified in the "file.encoding" property and falls back to ISO 8859_1
67 String encoding = AccessController local
69 "file.encoding", "ISO8859_1")); //$NON-NLS-1$//$NON-NLS-2$
70 decoder = Charset.forName(encoding).newDecoder().onMalformedInput(
79 * identified by name by {@code enc}. If the encoding cannot be found, an
89 * if the encoding specified by {@code enc} cannot be found.
168 * Returns the name of the encoding used to convert bytes into characters
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 1173 String encoding = resHeader.get("Transfer-Encoding"); local
1228 String encoding = reqHeader.get("Transfer-Encoding"); local
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKDSASigner.java 262 byte[] encoding)
265 ASN1InputStream aIn = new ASN1InputStream(encoding);
  /dalvik/libcore/security/src/test/java/tests/security/cert/
PKIXCertPathValidatorResultTest.java 328 byte[] encoding = { 0x01 };
330 TestUtils.getPolicyTree(), testPublicKey, encoding);
CertificateTest.java 65 * Meaningless cert encoding just for testing purposes
388 private byte[] encoding; field in class:CertificateTest.MyModifiablePublicKey
414 return this.encoding;
437 encoding = myEncoded;
  /device/htc/passion/
setup-makefiles.sh 80 <?xml version="1.0" encoding="utf-8"?>
  /external/bluetooth/glib/glib/
giochannel.h 114 gchar *encoding; member in struct:_GIOChannel
128 guint use_buffer : 1; /* The encoding uses the buffers */
129 guint do_encode : 1; /* The encoding uses the GIConv coverters */
204 /* character encoding conversion involved functions.
224 const gchar *encoding,
  /external/icu4c/i18n/
csdetect.cpp 233 void CharsetDetector::setDeclaredEncoding(const char *encoding, int32_t len) const
235 textIn->setDeclaredEncoding(encoding,len);
  /external/qemu/distrib/sdl-1.2.12/src/audio/sun/
SDL_sunaudio.c 301 info.play.encoding = enc;
310 if(info.play.encoding == enc
  /external/webkit/WebCore/css/
CSSStyleSheet.cpp 223 const TextEncoding encoding = TextEncoding(m_charset); local
224 return KURL(baseURL(), url, encoding);
  /external/webkit/WebCore/loader/
DocumentLoader.h 151 void setOverrideEncoding(const String& encoding) { m_overrideEncoding = encoding; }
  /external/webkit/WebCore/wml/
WMLGoElement.cpp 190 TextEncoding encoding = m_formDataBuilder.dataEncoding(document()).encodingForFormSubmission(); local
197 (*it)->encodeData(encoding, key, value);
  /external/webkit/WebKit/android/plugins/
ANPPaintInterface.cpp 119 static void anp_setTextEncoding(ANPPaint* paint, ANPTextEncoding encoding) {
120 paint->setTextEncoding(static_cast<SkPaint::TextEncoding>(encoding));
  /external/webkit/WebKit/gtk/webkit/
webkitwebdatasource.cpp 285 * Returns the text encoding name as set in the #WebKitWebView, or if not, the
286 * text encoding of the response.
288 * Return value: the encoding name of the #WebKitWebView or of the response.
302 CString encoding = textEncodingName.utf8(); local
304 priv->textEncoding = g_strdup(encoding.data());
webkitwebresource.cpp 146 * WebKitWebResource:encoding:
148 * The encoding name to which the web resource was encoded in.
155 "encoding",
156 _("Encoding"),
157 _("The text encoding name of the resource"),
251 * @encoding: the text encoding name of the #WebKitWebResource
254 * Returns a new #WebKitWebResource. The @encoding can be %NULL. The
266 const gchar* encoding,
277 WebKitWebResource* webResource = webkit_web_resource_new_with_core_resource(ArchiveResource::create(buffer, KURL(KURL(), String::fromUTF8(uri)), String::fromUTF8(mimeType), String::fromUTF8(encoding), String::fromUTF8(frameName)))
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.h 289 ErrorPageExtensionReturn() : contentType(QLatin1String("text/html")), encoding(QLatin1String("utf-8")) {};
291 QString encoding; member in class:QWebPage::ErrorPageExtensionReturn
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
AndroidFontManager.java 135 String encoding = props.getProperty(FONT_CHARACTER_ENCODING.replaceAll("LogicalFontName", lName).replaceAll("ComponentIndex", String.valueOf(numComp))); //$NON-NLS-1$ //$NON-NLS-2$ local
141 FontProperty fp = new AndroidFontProperty(lName, styleName, null, fontName, value, style, exclRange, encoding);
192 * -Foundry-Family-Weight-Slant-Width-Style-PixelSize-PointSize-ResX-ResY-Spacing-AvgWidth-Registry-Encoding
  /frameworks/base/core/java/android/pim/vcard/
VCardParser_V30.java 103 protected boolean isValidEncoding(String encoding) {
104 return sAcceptableEncodingV30.contains(encoding.toUpperCase());
  /dalvik/libcore/luni/src/main/java/java/util/
Properties.java 72 private static final String PROP_DTD = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
261 * Loads properties from the specified {@code InputStream}. The encoding is
669 * as the encoding. The {@code OutputStream} is not closed at the end. A
690 * {@code encoding} defines which encoding should be used. The {@code
695 * @param encoding the code identifying the encoding that should be used to
700 String encoding) throws IOException {
702 if (os == null || encoding == null) {
707 * We can write to XML file using encoding parameter but note that som
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 47 * The class encapsulates the ASN.1 DER encoding/decoding work
126 private byte[] encoding; field in class:GeneralName
563 if (encoding == null) {
564 encoding = ASN1.encode(this);
566 return encoding;
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 100 String encoding; field in class:CacheManager.CacheResult
146 return encoding;
167 public void setEncoding(String encoding) {
168 this.encoding = encoding;
  /external/libxml2/
nanohttp.c 153 char *encoding; /* encoding extracted from the contentType */ member in struct:xmlNanoHTTPCtxt
157 int usesGzip; /* "Content-Encoding: gzip" was detected */
416 if (ctxt->encoding != NULL) xmlFree(ctxt->encoding);
711 if (ctxt->encoding != NULL)
712 xmlFree(ctxt->encoding);
713 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
736 if (ctxt->encoding != NULL)
737 xmlFree(ctxt->encoding);
    [all...]
parser.c 54 #include <libxml/encoding.h>
212 const char *encoding);
434 errmsg = "Invalid XML encoding name\n";
6448 const xmlChar *encoding; local
9683 xmlChar *encoding = NULL; local
    [all...]
  /external/v8/src/
mark-compact.cc 839 // space are encoded in their map pointer word (along with an encoding of
842 // The excact encoding is described in the comments for class MapWord in
847 // sweeps of the heap. A distinguished map-pointer encoding is used to mark
849 // of a live object). A second distinguished map-pointer encoding is used
961 MapWord encoding = local
1706 MapWord encoding = obj->map_word(); local
1737 MapWord encoding = obj->map_word(); local
1829 MapWord encoding = obj->map_word(); local
1886 MapWord encoding = obj->map_word(); local
1930 MapWord encoding = obj->map_word(); local
    [all...]
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 60 // Wraps WebCore's text encoding in a character set converter for the
64 // The encoding parameter may be NULL, but in this case the object must not
66 KURLCharsetConverter(const TextEncoding* encoding)
67 : m_encoding(encoding)
107 static inline bool isUnicodeEncoding(const TextEncoding* encoding)
109 return encoding->encodingForFormSubmission() == UTF8Encoding();
200 // encoding is UTF-8 or other Unicode encodings. Note that this is
363 // Initializes with a string representing an absolute URL. No encoding
366 // canonical and in proper escaped form so needs no encoding. We treat it was
382 // This assumes UTF-8 encoding
    [all...]

Completed in 858 milliseconds

<<11121314151617181920>>