| /external/libxml2/ |
| xmlwriter.c | 507 * @encoding: the encoding or NULL for default 516 const char *encoding, const char *standalone) 537 if (encoding != NULL) { 538 encoder = xmlFindCharEncodingHandler(encoding); 552 if ((writer->doc != NULL) && (writer->doc->encoding == NULL)) 553 writer->doc->encoding = xmlStrdup((xmlChar *)writer->out->encoder->name); 578 count = xmlOutputBufferWriteString(writer->out, " encoding="); [all...] |
| xmlIO.c | 591 * @path: the path in utf-8 encoding 609 /* maybe path in native encoding */ 618 * @path: the path in utf-8 encoding 637 /* maybe path in native encoding */ 3632 const char *encoding; local [all...] |
| entities.c | 546 * Do a global encoding of a string, replacing the predefined entities 610 if (((doc != NULL) && (doc->encoding != NULL)) || (html)) { 632 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1"); 665 doc->encoding = xmlStrdup(BAD_CAST "ISO-8859-1"); 702 * Do a global encoding of a string, replacing the predefined entities
|
| /prebuilt/common/commons-compress/ |
| commons-compress-1.0.jar | |
| /external/webkit/WebKit/chromium/src/ |
| WebFrameImpl.cpp | 414 WebString WebFrameImpl::encoding() const function in class:WebKit::WebFrameImpl 416 return frame()->loader()->encoding(); 892 // Set the text encoding. This calls begin() for us. It is safe to call 895 String encoding = documentLoader->overrideEncoding(); local 896 if (encoding.isNull()) { 898 encoding = documentLoader->response().textEncodingName(); 900 m_frame->loader()->setEncoding(encoding, userChosen); [all...] |
| /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
| ToUnknownStream.java | 661 public void setEncoding(String encoding) 663 m_handler.setEncoding(encoding); [all...] |
| /external/freetype/include/freetype/ |
| freetype.h | 459 /* character codes in a given encoding into glyph indexes for its */ 738 FT_Encoding encoding; member in struct:FT_CharMapRec_ [all...] |
| /external/icu4c/test/testdata/ |
| testdata.mak | 81 @echo Making Test Resource Bundle file with encoding ISCII,version=0
|
| /external/webkit/WebCore/xml/ |
| XMLHttpRequest.cpp | 74 m_forbiddenRequestHeaders.add("accept-encoding"); 79 m_forbiddenRequestHeaders.add("content-transfer-encoding"); 90 m_forbiddenRequestHeaders.add("transfer-encoding"); 396 // FIXME: this should include the charset used for encoding. 404 // FIXME: this should use value of document.inputEncoding to determine the encoding to use. 405 TextEncoding encoding = UTF8Encoding(); local 406 m_requestEntityBody = FormData::create(encoding.encode(body.characters(), body.length(), EntitiesForUnencodables)); 901 // Don't stop on encoding errors, unlike it is done for other kinds of XML resources. This matches the behavior of previous WebKit versions, Firefox and Opera.
|
| XSLTProcessorLibxslt.cpp | 137 // We don't specify an encoding here. Neither Gecko nor WinIE respects 138 // the encoding specified in the HTTP headers. 321 resultEncoding = (char*)resultDoc->encoding;
|
| /frameworks/base/core/java/android/pim/vcard/ |
| VCardParser_V21.java | 65 * Though vCard 2.1 specification does not allow "B" encoding, some data may have it. 79 * The encoding type. "Encoding" in vCard is different from "Charset". 175 * @return true when the encoding is a valid encoding. 177 protected boolean isValidEncoding(String encoding) { 178 return sAvailableEncodingV21.contains(encoding.toUpperCase()); 516 * / "ENCODING" [ws] "=" [ws] pencodingval 531 } else if (paramName.equals("ENCODING")) { 594 mBuilder.propertyParamType("ENCODING"); [all...] |
| /packages/apps/Email/src/com/android/email/ |
| Utility.java | 57 public final static String readInputStream(InputStream in, String encoding) throws IOException { 58 InputStreamReader reader = new InputStreamReader(in, encoding);
|
| /external/skia/include/core/ |
| SkPaint.h | 672 void setTextEncoding(TextEncoding encoding); 715 If the text encoding for the paint is kGlyph_TextEncoding, then this 721 to zero. Note: this does not look at the text-encoding setting in the [all...] |
| /external/v8/src/ |
| serialize.cc | 51 // The encoding of an external reference. The type is in the high word. 1230 uint32_t encoding = serializer_->EncodeExternalReference(target); local [all...] |
| /external/webkit/WebCore/dom/ |
| XMLTokenizerLibxml2.cpp | 639 // libXML throws an error if you try to switch the encoding for an empty string. 641 // Hack around libxml2's lack of encoding overide support by manually 642 // resetting the encoding to UTF-16 before every chunk. Otherwise libxml 643 // will detect <?xml version="1.0" encoding="<encoding name>"?> blocks 655 handleError(fatal, "Encoding error", context->context()->input->line, context->context()->input->col); 1003 void XMLTokenizer::startDocument(const xmlChar* version, const xmlChar* encoding, int standalone) 1010 if (encoding) 1011 m_doc->setXMLEncoding(toString(encoding)); [all...] |
| /external/webkit/WebCore/html/ |
| HTMLLinkElement.cpp | 227 charset = document()->frame()->loader()->encoding();
|
| /external/webkit/WebKit/gtk/webkit/ |
| webkitprivate.h | 142 char* encoding; member in struct:_WebKitWebViewPrivate
|
| webkitwebframe.cpp | 540 static void webkit_web_frame_load_data(WebKitWebFrame* frame, const gchar* content, const gchar* mimeType, const gchar* encoding, const gchar* baseURL, const gchar* unreachableURL) 552 encoding ? String::fromUTF8(encoding) : String::fromUTF8("UTF-8"), 564 * @encoding: the encoding, or %NULL 568 * @encoding and @base_uri. 572 * If @encoding is %NULL, "UTF-8" is assumed. [all...] |
| webkitwebview.cpp | 3846 String encoding = core(webView)->mainFrame()->loader()->encoding(); local [all...] |
| /hardware/ril/include/telephony/ |
| ril_cdma_sms.h | 517 /* -- User data encoding type -- */ 554 RIL_CDMA_SMS_UserDataEncoding encoding; member in struct:__anon7781 568 supported encoding types and languages. 580 when decoding the user data according to the encoding type and language.
|
| /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
| SystemTest.java | 427 "java.vm.vendor.url", "file.encoding","user.language", 483 String encoding = System.getProperty("file.encoding"); local 505 if (possibles[i].equals(encoding)) { 510 assertTrue("Wrong encoding: " + encoding, !is8859_1 || found8859_1); [all...] |
| /external/tagsoup/src/org/ccil/cowan/tagsoup/ |
| Parser.java | 271 Specifies the AutoDetector (for encoding detection) this Parser uses. 483 String encoding = s.getEncoding(); local 489 if (encoding == null) { 494 r = new InputStreamReader(i, encoding); [all...] |
| /frameworks/base/core/java/com/google/android/mms/pdu/ |
| PduParser.java | 782 // Check Content-Transfer-Encoding. 785 String encoding = new String(partDataEncoding); local 786 if (encoding.equalsIgnoreCase(PduPart.P_BASE64)) [all...] |
| /external/webkit/WebKit/mac/WebView/ |
| WebFrame.mm | [all...] |
| /external/icu4c/test/intltest/ |
| regextst.cpp | 1952 const char* encoding; local [all...] |