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

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetDecoderICU.java 12 package com.ibm.icu.charset;
17 import java.nio.charset.CharsetDecoder;
18 import java.nio.charset.CoderResult;
19 import java.nio.charset.CodingErrorAction;
81 * @param cs The CharsetICU object containing information about how to charset to decode.
720 CharsetICU cs = (CharsetICU) decoder.charset();
733 * Returns the maxBytesPerChar value for the Charset that created this decoder.
738 return ((CharsetICU)(this.charset())).maxBytesPerChar;
CharsetHZ.java 9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
17 import java.nio.charset.UnsupportedCharsetException;
39 throw new UnsupportedCharsetException("unable to open ICU GBK Charset, required for HZ");
CharsetICU.java 10 package com.ibm.icu.charset;
14 import java.nio.charset.Charset;
15 import java.nio.charset.IllegalCharsetNameException;
16 import java.nio.charset.UnsupportedCharsetException;
22 * <p>A subclass of java.nio.Charset for providing implementation of ICU's charset converters.
24 * from UTF-16. You can open a converter with {@link Charset#forName} and {@link #forNameICU}. With that
31 * <p>Note that {@link #name()} cannot always return a unique charset name.
32 * {@link Charset} documents that
    [all...]
CharsetUTF16.java 9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
CharsetUTF32.java 9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
CharsetUTF7.java 9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
    [all...]
CharsetUTF8.java 12 package com.ibm.icu.charset;
17 import java.nio.charset.CharsetDecoder;
18 import java.nio.charset.CharsetEncoder;
19 import java.nio.charset.CoderResult;
UConverterConstants.java 9 package com.ibm.icu.charset;
UConverterSharedData.java 9 package com.ibm.icu.charset;
  /external/libcups/cups/
ppd-emit.c 396 ppd_attr_t *charset; /* PJL charset */ local
400 if ((charset = ppdFindAttr(ppd, "cupsPJLCharset", NULL)) != NULL)
402 if (!charset->value || _cups_strcasecmp(charset->value, "UTF-8"))
403 charset = NULL;
487 else if (!charset && (*ptr & 128))
521 else if (!charset && (*ptr & 128))
  /external/libvncserver/client_examples/
gtkvncviewer.c 542 const gchar *charset; local
545 (void) g_get_charset (&charset);
547 charset, NULL, NULL, NULL, NULL);
555 "nor in locale charset.\n");
  /external/pdfium/third_party/freetype/include/freetype/
ftwinfnt.h 59 * A list of valid values for the `charset' byte in
84 * is used for the charset of vector fonts, like `modern.fon',
200 FT_Byte charset; member in struct:FT_WinFNT_HeaderRec_
  /external/pdfium/third_party/freetype/src/cff/
cffdrivr.c 304 /* first, locate the sid in the charset table */
305 sid = font->charset.sids[glyph_index];
325 CFF_Charset charset; local
333 charset = &cff->charset;
341 sid = charset->sids[i];
631 c = cff->charset.sids[glyph_index];
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPResponse.java 13 import java.nio.charset.Charset;
14 import java.nio.charset.StandardCharsets;
26 private static final String csIndicator = "charset=";
153 Charset charset; local
155 charset = Charset.forName(getCharset());
157 charset = StandardCharsets.ISO_8859_1;
160 mBody.limit() - mBody.position(), charset));
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 26 import java.nio.charset.Charset;
576 Charset charset = null; local
581 && Charset.isSupported(characterset)) {
583 charset = Charset.forName(characterset);
632 // isMbcs must be true. So both mbcsBuffer and charset are initialized.
636 ret.append(charset.decode(mbcsBuffer).toString());
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 17 package org.apache.harmony.tests.java.nio.charset;
22 import java.nio.charset.CharacterCodingException;
23 import java.nio.charset.Charset;
24 import java.nio.charset.CharsetEncoder;
25 import java.nio.charset.CoderResult;
26 import java.nio.charset.CodingErrorAction;
27 import java.nio.charset.MalformedInputException;
28 import java.nio.charset.UnmappableCharacterException;
32 // charset for asci
    [all...]
AbstractCharsetTestCase.java 18 package org.apache.harmony.tests.java.nio.charset;
22 import java.nio.charset.Charset;
27 * Super class for concrete charset test suites.
31 // the canonical name of this charset
43 // charset instance
44 protected Charset testingCharset;
53 this.testingCharset = Charset.forName(this.canonicalName);
105 Charset c = Charset.forName(this.aliases[i])
    [all...]
CharsetDecoder2Test.java 17 package org.apache.harmony.tests.java.nio.charset;
23 import java.nio.charset.CharacterCodingException;
24 import java.nio.charset.Charset;
25 import java.nio.charset.CharsetDecoder;
26 import java.nio.charset.CharsetEncoder;
27 import java.nio.charset.CoderMalfunctionError;
28 import java.nio.charset.CoderResult;
29 import java.nio.charset.CodingErrorAction;
30 import java.nio.charset.MalformedInputException
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 15 package java.nio.charset;
50 public static CharsetDecoderICU newInstance(Charset cs, String icuCanonicalName) {
68 private CharsetDecoderICU(Charset cs, float averageCharsPerByte, long address) {
CharsetEncoderICU.java 15 package java.nio.charset;
66 public static CharsetEncoderICU newInstance(Charset cs, String icuCanonicalName) {
95 private CharsetEncoderICU(Charset cs, float averageBytesPerChar, float maxBytesPerChar, byte[] replacement, long address) {
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetEncoderTest.java 17 package libcore.java.nio.charset;
21 import java.nio.charset.Charset;
22 import java.nio.charset.CharsetEncoder;
23 import java.nio.charset.CharsetDecoder;
24 import java.nio.charset.CoderResult;
25 import java.nio.charset.CodingErrorAction;
26 import java.nio.charset.StandardCharsets;
32 Charset ascii = Charset.forName("US-ASCII")
    [all...]
ModifiedUtf8Test.java 17 package libcore.java.nio.charset;
24 import java.nio.charset.ModifiedUtf8;
  /libcore/ojluni/src/main/java/java/io/
PrintStream.java 31 import java.nio.charset.Charset;
32 import java.nio.charset.IllegalCharsetNameException;
33 import java.nio.charset.UnsupportedCharsetException;
73 private Charset charset; field in class:PrintStream
87 * Returns a charset object for the given charset name.
89 * @throws UnsupportedEncodingException if the charset is not supported
91 private static Charset toCharset(String csn
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
MimeUtility.java 209 * Reads the Part's body and returns a String based on any charset conversion that needed to be
234 String charset = getHeaderParameter(part.getContentType(), "charset"); local
235 if (charset != null) {
237 * See if there is conversion from the MIME charset to the Java one.
239 charset = CharsetUtil.lookup(charset).name();
244 if (charset == null) {
245 charset = "ASCII";
250 String result = out.toString(charset);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 219 * Reads the Part's body and returns a String based on any charset conversion that needed
243 String charset = getHeaderParameter(part.getContentType(), "charset"); local
244 if (charset != null) {
246 * See if there is conversion from the MIME charset to the Java one.
248 charset = CharsetUtil.toJavaCharset(charset);
253 if (charset == null) {
254 charset = "ASCII";
259 String result = out.toString(charset);
    [all...]

Completed in 468 milliseconds

1 2 3 4 5 6 78 91011>>