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

<<11121314151617181920>>

  /external/emma/lib/
emma_ant.jar 
  /external/webkit/WebCore/html/
HTMLTextAreaElement.cpp 168 bool HTMLTextAreaElement::appendFormData(FormDataList& encoding, bool)
177 encoding.appendData(name(), text);
HTMLInputElement.cpp     [all...]
HTMLFormElement.cpp 207 TextEncoding encoding = dataEncoding().encodingForFormSubmission(); local
213 FormDataList list(encoding);
249 m_formDataBuilder.addFilenameToMultiPartHeader(header, encoding, fileName);
  /external/webkit/WebCore/plugins/mac/
PluginPackageMac.cpp 114 CFStringEncoding encoding = stringEncodingForResource(handle);
125 WTF::RetainPtr<CFStringRef> str = CFStringCreateWithPascalString(0, p, encoding);
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.h 202 const gchar *encoding,
336 const gchar * encoding);
  /external/libxml2/include/libxml/
tree.h 535 const xmlChar *encoding; /* external initial encoding, if any */ member in struct:_xmlDoc
539 int charset; /* encoding of the in-memory content
    [all...]
  /external/webkit/WebCore/dom/
Document.h 301 // Synonyms backing similar DOM attributes. Use Document::encoding() to avoid virtual dispatch.
302 String inputEncoding() const { return Document::encoding(); }
303 String charset() const { return Document::encoding(); }
304 String characterSet() const { return Document::encoding(); }
315 void setXMLEncoding(const String& encoding) { m_xmlEncoding = encoding; } // read-only property, only to be set from XMLTokenizer
    [all...]
XMLTokenizerQt.cpp 186 handleError(fatal, "Encoding error", lineNumber(), columnNumber());
453 QStringRef encoding = m_stream.documentEncoding(); local
454 if (!encoding.isEmpty())
455 m_doc->setXMLEncoding(encoding);
  /external/libxml2/
parserInternals.c 46 #include <libxml/encoding.h>
135 * Handle an encoding error
191 * n encoding error
482 * From rfc2044: encoding of the Unicode values on UTF-8:
547 * Assume it's a fixed length encoding (1) with
548 * a compatible encoding for the ASCII set, since
570 * input encoding didn't get properly advertised in the
571 * declaration header. Report the error and switch the encoding
573 * encoding !)
578 "Input is not proper UTF-8, indicate encoding !\n"
    [all...]
SAX2.c 436 * On the fly encoding conversion if needed
988 if (ctxt->encoding != NULL)
989 doc->encoding = xmlStrdup(ctxt->encoding);
991 doc->encoding = NULL;
1032 * Grab the encoding if it was added on-the-fly
1034 if ((ctxt->encoding != NULL) && (ctxt->myDoc != NULL) &&
1035 (ctxt->myDoc->encoding == NULL)) {
1036 ctxt->myDoc->encoding = ctxt->encoding;
    [all...]
xmllint.c 171 static char *encoding = NULL; variable
    [all...]
  /prebuilt/common/kxml2/
kxml2-2.3.0.jar 
  /external/expat/xmlwf/
xmlwf.c 638 "[-e encoding] file ...\n"), prog);
647 const XML_Char *encoding = NULL; local
725 encoding = argv[i];
728 encoding = argv[i] + j + 1;
760 parser = XML_ParserCreateNS(encoding, NSSEP);
762 parser = XML_ParserCreate(encoding);
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 692 String encoding = loader->overrideEncoding(); local
693 bool userChosen = !encoding.isNull();
694 if (encoding.isNull())
695 encoding = loader->response().textEncodingName();
696 loader->frameLoader()->setEncoding(encoding, userChosen);
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.cpp 511 // Set the encoding. This only needs to be done once, but it's harmless to do it again later.
512 String encoding = coreFrame->loader()->documentLoader()->overrideEncoding();
513 bool userChosen = !encoding.isNull();
514 if (encoding.isNull())
515 encoding = textEncoding;
516 coreFrame->loader()->setEncoding(encoding, userChosen);
    [all...]
  /frameworks/base/packages/TtsService/jni/
android_tts_SynthProxy.cpp 646 AudioSystem::audio_format encoding = DEFAULT_TTS_FORMAT; local
649 pSynthData->mNativeSynthInterface->setAudioFormat(encoding, rate, channels);
651 if ((encoding != AudioSystem::PCM_16_BIT) && (encoding != AudioSystem::PCM_8_BIT)) {
703 int sampleSizeInByte = (encoding == AudioSystem::PCM_16_BIT ? 2 : 1);
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
PropertiesTest.java 469 // store in UTF-8 encoding
486 // store in ISO-8859-1 encoding
613 protected byte[] writePropertiesXML(String encoding) throws IOException {
615 PrintStream ps = new PrintStream(bout, true, encoding);
616 ps.println("<?xml version=\"1.0\" encoding=\"" + encoding + "\"?>");
  /dalvik/libcore/security/src/test/java/tests/api/javax/security/cert/
X509CertificateTest.java 667 private byte[] encoding; field in class:X509CertificateTest.MyModifiablePublicKey
693 return this.encoding;
716 encoding = myEncoded;
732 // cert = DER encoding of the ASN1.0 structure
  /external/webkit/WebCore/loader/
loader.cpp 500 String encoding = response.textEncodingName(); local
501 if (!encoding.isNull())
502 resource->setEncoding(encoding);
  /frameworks/base/core/java/android/webkit/
BrowserFrame.java 271 * @param encoding Character set encoding of the provided data.
275 String encoding, String historyUrl) {
292 nativeLoadData(baseUrl, data, mimeType, encoding, historyUrl);
    [all...]
  /dalvik/libcore/nio_char/src/main/java/java/nio/charset/
Charset.java 48 * sequence. It facilitates the encoding from a Unicode character sequence into
86 * The encoding of configuration files
671 * Returns true if this charset supports encoding, false otherwise.
673 * @return true if this charset supports encoding, false otherwise.
683 * The default action in case of encoding errors is
688 * @return the result of the encoding.
705 * The default action in case of encoding errors is
710 * @return the result of the encoding.
810 String encoding = AccessController
813 return System.getProperty("file.encoding"); //$NON-NLS-1
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 280 final String encoding = source.getEncoding(); local
305 pp.setInput(stream, encoding);
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 490 private void openOutFile (final File file, final String encoding, final boolean mkdirs)
500 m_out = new BufferedWriter (new OutputStreamWriter (new FileOutputStream (file), encoding), IO_BUF_SIZE);
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 112 m_out.write ("<?xml version=\"1.0\" encoding=\"" + m_settings.getOutEncoding () + "\"?>");
505 private void openOutFile (final File file, final String encoding, final boolean mkdirs)
515 m_out = new IndentingWriter (new OutputStreamWriter (new FileOutputStream (file), encoding), IO_BUF_SIZE, 0);

Completed in 760 milliseconds

<<11121314151617181920>>