HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 351 - 375 of 567) sorted by null

<<11121314151617181920>>

  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.mm 226 NSString *result = [[NSString alloc] initWithData:nsData encoding:NSUTF8StringEncoding];
243 return decoder->encoding().decode(reinterpret_cast<const char*>([data bytes]), [data length]);
  /external/webkit/WebKit/qt/Api/
qwebsettings.cpp 188 QString encoding = !defaultTextEncoding.isEmpty() ? defaultTextEncoding: global->defaultTextEncoding; local
189 settings->setDefaultTextEncodingName(encoding);
488 Specifies the default text encoding system.
490 The \a encoding, must be a string describing an encoding such as "utf-8",
492 extensive list of encoding names see \l{QTextCodec}
496 void QWebSettings::setDefaultTextEncoding(const QString& encoding)
498 d->defaultTextEncoding = encoding;
504 Returns the default text encoding.
    [all...]
  /frameworks/base/core/java/android/webkit/
WebSettings.java     [all...]
WebViewWorker.java 65 * Package level class to be used while updating a cache entry's encoding.
144 cache.encoding = data.mEncoding;
  /external/webkit/WebCore/platform/
KURL.cpp 327 KURL::KURL(const KURL& base, const String& relative, const TextEncoding& encoding)
333 init(base, relative, encoding.encodingForFormSubmission());
336 void KURL::init(const KURL& base, const String& relative, const TextEncoding& encoding)
366 encodeRelativeString(rel, encoding, strBuffer);
799 // Usually, the query is encoded using document encoding, not UTF-8, but we don't have
    [all...]
  /cts/tools/utils/
buildCts.py 164 doc.writexml(description, addindent=' ', encoding='UTF-8')
241 doc.writexml(description, addindent=' ', encoding='UTF-8')
  /development/build/
Android.mk 31 $(hide) $(TARGET_JAVAC) -encoding ascii -bootclasspath "" \
  /external/bluetooth/glib/tests/
makefile.msc.in 72 unicode-encoding.exe \
  /external/chromium/third_party/icu/source/data/mappings/
ucmlocal.mk 30 # encoding when coming across ISO-2022-CN-(Ext).
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 537 public void setEncoding (final String encoding)
539 m_reportCfg.setEncoding (encoding);
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 373 private void openOutFile(final File file, final String encoding, final boolean mkdirs)
391 new OutputStreamWriter(new FileOutputStream(file), encoding),
  /external/emma/lib/
emma_ant.jar 
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 41 * responsible for percent-encoding parameters before transmission and decoding
149 * The character encoding of the body of this message.
151 * @return the name of an encoding, or "ISO-8859-1" if no charset has been
337 public static String readAll(InputStream from, String encoding) throws IOException
344 Reader r = new InputStreamReader(from, encoding);
  /external/webkit/WebCore/html/
HTMLTextAreaElement.cpp 168 bool HTMLTextAreaElement::appendFormData(FormDataList& encoding, bool)
177 encoding.appendData(name(), text);
HTMLInputElement.cpp     [all...]
  /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/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 69 * Set pretty encoding on / off.
79 * Creates a new AcceptEncodingHeader based on the newly supplied encoding
82 * @param encoding - the new string containing the encoding value.
84 * unexpectedly while parsing the encoding value.
87 public AcceptEncodingHeader createAcceptEncodingHeader(String encoding)
89 if (encoding == null)
90 throw new NullPointerException("the encoding parameter is null");
92 acceptEncoding.setEncoding(encoding);
348 * Creates a new ContentEncodingHeader based on the newly supplied encoding
    [all...]
  /external/webkit/WebCore/dom/
Document.h 306 // Synonyms backing similar DOM attributes. Use Document::encoding() to avoid virtual dispatch.
307 String inputEncoding() const { return Document::encoding(); }
308 String charset() const { return Document::encoding(); }
309 String characterSet() const { return Document::encoding(); }
320 void setXMLEncoding(const String& encoding) { m_xmlEncoding = encoding; } // read-only property, only to be set from XMLTokenizer
    [all...]
  /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);

Completed in 4145 milliseconds

<<11121314151617181920>>