HomeSort by relevance Sort by last modified time
    Searched refs:charset (Results 176 - 200 of 913) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 22 import java.nio.charset.Charset;
23 import java.nio.charset.CharsetEncoder;
24 import java.nio.charset.CoderResult;
25 import java.nio.charset.CodingErrorAction;
55 this(out, Charset.defaultCharset());
81 encoder = Charset.forName(charsetName).newEncoder();
97 * the {@code Charset} that specifies the character encoding.
99 public OutputStreamWriter(OutputStream out, Charset cs) {
119 charsetEncoder.charset();
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
chrome_renderer_pepper_host_factory.cc 74 PP_PrivateFontCharset charset; local
76 message, &description, &charset)) {
78 host_, instance, params.pp_resource(), description, charset));
pepper_flash_font_file_host.h 30 PP_PrivateFontCharset charset);
pepper_flash_font_file_host.cc 25 PP_PrivateFontCharset charset)
34 charset,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.h 65 bool checkStyleSheet(String& href, String& charset);
66 void process(const String& href, const String& charset);
68 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource*) OVERRIDE;
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.h 50 // |version| is the version number of the application. |charset| is the default
58 const std::string& charset,
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CSSStyleSheetResource.h 42 CSSStyleSheetResource(const ResourceRequest&, const String& charset);
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ParsedContentType.h 51 String charset() const;
  /external/chromium_org/third_party/ots/src/
vdmx.h 15 uint8_t charset; member in struct:ots::OpenTypeVDMXRatioRecord
  /external/guava/guava-tests/test/com/google/common/base/
CharsetsTest.java 21 import java.nio.charset.Charset;
30 assertEquals(Charset.forName("US-ASCII"), Charsets.US_ASCII);
34 assertEquals(Charset.forName("ISO-8859-1"), Charsets.ISO_8859_1);
38 assertEquals(Charset.forName("UTF-8"), Charsets.UTF_8);
42 assertEquals(Charset.forName("UTF-16BE"), Charsets.UTF_16BE);
46 assertEquals(Charset.forName("UTF-16LE"), Charsets.UTF_16LE);
50 assertEquals(Charset.forName("UTF-16"), Charsets.UTF_16);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryExt.java 41 * Set default charset used for encoding String content. Note that this
46 * @param charset -- charset to set.
48 * @throws IllegalArgumentException if Charset is not a known charset.
51 public void setDefaultContentEncodingCharset(String charset)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF8CharsetTest.java 17 package org.apache.harmony.tests.java.nio.charset;
22 * Test UTF-8 charset.
37 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testDecode_Normal()
48 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testEncode_Normal()
  /libcore/luni/src/main/java/java/nio/charset/
CharsetICU.java 10 package java.nio.charset;
14 final class CharsetICU extends Charset {
30 public boolean contains(Charset cs) {
Charsets.java 17 package java.nio.charset;
20 * Various special-case charset conversions (for performance).
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharsetEncoderDecoderBufferTest.java 17 package libcore.java.nio.charset;
21 import java.nio.charset.Charset;
22 import java.nio.charset.CharsetDecoder;
23 import java.nio.charset.CharsetEncoder;
38 CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder();
70 CharsetDecoder decoder = Charset.forName("UTF-8").newDecoder();
96 CharsetEncoder encoder = Charset.forName("UTF-8").newEncoder();
128 CharsetEncoder encoder = Charset.forName("UTF-8").newEncoder();
  /external/chromium_org/net/proxy/
proxy_script_fetcher_impl.cc 49 // Converts |bytes| (which is encoded by |charset|) to UTF16, saving the resul
51 // If |charset| is empty, then we don't know what it was and guess.
52 void ConvertResponseToUTF16(const std::string& charset,
57 if (charset.empty()) {
58 // Assume ISO-8859-1 if no charset was specified.
61 // Otherwise trust the charset that was provided.
62 codepage = charset.c_str();
65 // Be generous in the conversion -- if any characters lie outside of |charset|
125 std::string charset; local
127 if (!DataURL::Parse(url, &mime_type, &charset, &data)
285 std::string charset; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 27 * is for a Unicode charset, so it would be difficult to only exclude those.
89 char charset[100], cbopt[4]; local
116 s=testCase->getString("charset", errorCode);
117 s.extract(0, 0x7fffffff, charset, sizeof(charset), "");
118 cc.charset=charset;
123 if (strlen(charset) >= 8 &&
124 strncmp(charset+4, "2022-CN", 4) == 0) {
194 logln("TestToUnicode[%d] %s", i, charset);
210 char charset[100], cbopt[4]; local
373 char charset[100]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_compile.py 179 def _compile_charset(charset, flags, code, fixup=None):
180 # compile charset subprogram
184 for op, av in _optimize_charset(charset, fixup):
193 elif op is CHARSET:
208 def _optimize_charset(charset, fixup):
214 for op, av in charset:
224 return charset # cannot compress
227 return _optimize_unicode(charset, fixup)
250 if len(out) < len(charset):
255 outappend((CHARSET, data)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_compile.py 179 def _compile_charset(charset, flags, code, fixup=None):
180 # compile charset subprogram
184 for op, av in _optimize_charset(charset, fixup):
193 elif op is CHARSET:
208 def _optimize_charset(charset, fixup):
214 for op, av in charset:
224 return charset # cannot compress
227 return _optimize_unicode(charset, fixup)
250 if len(out) < len(charset):
255 outappend((CHARSET, data)
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardComposer.java 166 * The variant which sets charset to null and sets careHandlerErrors to true.
172 public VCardComposer(Context context, int vcardType, String charset) {
173 this(context, vcardType, charset, true);
177 * The variant which sets charset to null.
189 * @param charset The charset to be used. Use null when you don't need the charset.
192 public VCardComposer(final Context context, final int vcardType, String charset,
194 this(context, context.getContentResolver(), vcardType, charset, careHandlerErrors);
203 final int vcardType, String charset, final boolean careHandlerErrors)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
  /external/chromium_org/components/dom_distiller/core/css/
distilledpage.css 4 @charset "utf-8";
  /external/chromium_org/content/browser/
histogram_internals_request_job.cc 59 std::string* charset,
63 charset->assign("UTF8");
  /external/chromium_org/ppapi/proxy/
flash_font_file_resource.cc 20 PP_PrivateFontCharset charset)
22 charset_(charset) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.idl 22 [Reflect] attribute DOMString charset;

Completed in 1804 milliseconds

1 2 3 4 5 6 78 91011>>