/third_party/python/Doc/library/ |
D | email.charset.rst | 16 This module provides a class :class:`Charset` for representing character sets 19 Instances of :class:`Charset` are used in several other modules within the 25 .. class:: Charset(input_charset=DEFAULT_CHARSET) 49 :class:`Charset` instances have the following data attributes: 61 header, this attribute will be set to ``Charset.QP`` (for 62 quoted-printable), ``Charset.BASE64`` (for base64 encoding), or 63 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, 71 ``Charset.SHORTEST`` is not allowed for *body_encoding*. 96 :class:`Charset` instances also have the following methods: 146 The :class:`Charset` class also provides a number of methods to support [all …]
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/common/ |
D | StringCodec.java | 8 import java.nio.charset.Charset; 18 private static final Charset UTF8 = Charset.forName("UTF8");
|
D | StandardMessageCodec.java | 15 import java.nio.charset.Charset; 94 private static final Charset UTF8 = Charset.forName("UTF8");
|
/third_party/python/Lib/email/ |
D | header.py | 21 Charset = _charset.Charset variable 31 USASCII = Charset('us-ascii') 32 UTF8 = Charset('utf-8') 172 if charset is not None and not isinstance(charset, Charset): 173 charset = Charset(charset) 211 elif not isinstance(charset, Charset): 212 charset = Charset(charset) 288 elif not isinstance(charset, Charset): 289 charset = Charset(charset)
|
D | message.py | 20 Charset = _charset.Charset variable 313 if not isinstance(charset, Charset): 314 charset = Charset(charset) 341 if not isinstance(charset, Charset): 342 charset = Charset(charset)
|
/third_party/python/Lib/test/test_email/ |
D | test_asian_codecs.py | 8 from email.charset import Charset 26 j = Charset(jcode) 27 g = Charset(gcode)
|
D | test_email.py | 20 from email.charset import Charset 64 charset = Charset('iso-8859-1') 95 charset = Charset('iso-8859-1') 101 charset = Charset('utf-8') 110 charset = Charset('utf-8') 119 charset = Charset('utf-8') 906 g = Charset("iso-8859-1") 907 cz = Charset("iso-8859-2") 908 utf8 = Charset("utf-8") 1710 charset = Charset('utf-8') [all …]
|
/third_party/libphonenumber/tools/java/cpp-build/src/com/google/i18n/phonenumbers/ |
D | BuildMetadataCppFromXml.java | 28 import java.nio.charset.Charset; 219 private static final Charset UTF_8 = Charset.forName("UTF-8");
|
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
D | MetadataFilterCoverageTest.java | 23 import java.nio.charset.Charset; 38 Charset.forName("UTF-8")));
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-cff1-table.hh | 436 struct Charset { struct 454 bool serialize (hb_serialize_context_t *c, const Charset &src, unsigned int num_glyphs) in serialize() argument 458 Charset *dest = c->allocate_size<Charset> (size); in serialize() 471 Charset *dest = c->extend_min (*this); in serialize() 1032 charset = &Null(Charset); in init() 1035 charset = &StructAtOffsetOrNull<Charset> (cff, topDict.CharsetOffset); in init() 1036 if (unlikely ((charset == &Null (Charset)) || !charset->sanitize (&sc))) { fini (); return; } in init() 1145 if (charset != &Null(Charset)) in std_code_to_glyph() 1157 const Charset *charset; 1191 if (unlikely (charset == &Null(Charset))) { fini (); return; } in init() [all …]
|
/third_party/libphonenumber/tools/java/cpp-build/test/com/google/i18n/phonenumbers/ |
D | BuildMetadataCppFromXmlTest.java | 33 import java.nio.charset.Charset; 143 private static final Charset UTF_8 = Charset.forName("UTF-8");
|
/third_party/harfbuzz/src/ |
D | hb-ot-cff1-table.hh | 440 struct Charset struct 443 bool serialize (hb_serialize_context_t *c, const Charset &src, unsigned int num_glyphs) in serialize() argument 447 Charset *dest = c->allocate_size<Charset> (size); in serialize() 460 Charset *dest = c->extend_min (*this); in serialize() 1035 charset = &Null (Charset); in init() 1038 charset = &StructAtOffsetOrNull<Charset> (cff, topDict.CharsetOffset); in init() 1039 if (unlikely ((charset == &Null (Charset)) || !charset->sanitize (&sc))) { fini (); return; } in init() 1062 if (unlikely (charset == &Null (Charset))) { fini (); return; } in init() 1163 if (charset != &Null (Charset)) in std_code_to_glyph() 1198 if (charset != &Null (Charset)) in glyph_to_sid() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-ot-cff1-table.hh | 440 struct Charset struct 443 bool serialize (hb_serialize_context_t *c, const Charset &src, unsigned int num_glyphs) in serialize() argument 447 Charset *dest = c->allocate_size<Charset> (size); in serialize() 460 Charset *dest = c->extend_min (this); in serialize() 1036 charset = &Null (Charset); in init() 1039 charset = &StructAtOffsetOrNull<Charset> (cff, topDict.CharsetOffset); in init() 1040 if (unlikely ((charset == &Null (Charset)) || !charset->sanitize (&sc))) { fini (); return; } in init() 1063 if (unlikely (charset == &Null (Charset))) { fini (); return; } in init() 1164 if (charset != &Null (Charset)) in std_code_to_glyph() 1199 if (charset != &Null (Charset)) in glyph_to_sid() [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Internal.java | 36 import java.nio.charset.Charset; 58 static final Charset UTF_8 = Charset.forName("UTF-8"); 59 static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
|
D | ByteString.java | 47 import java.nio.charset.Charset; 450 public static ByteString copyFrom(String text, Charset charset) { in copyFrom() 784 return toString(Charset.forName(charsetName)); in toString() 799 public final String toString(Charset charset) { in toString() 809 protected abstract String toStringInternal(Charset charset); in toStringInternal() 1396 protected final String toStringInternal(Charset charset) { in toStringInternal()
|
D | NioByteString.java | 43 import java.nio.charset.Charset; 160 protected String toStringInternal(Charset charset) { in toStringInternal()
|
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/buildtools/ |
D | GenerateTimeZonesMapData.java | 31 import java.nio.charset.Charset; 68 new BufferedInputStream(input), Charset.forName("UTF-8"))); in parseTextFile()
|
/third_party/python/Lib/email/mime/ |
D | text.py | 9 from email.charset import Charset
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/ |
D | TestUtils.java | 33 import java.nio.charset.Charset; 163 Charset cs = CharsetICU.forNameICU(charsetName); in getEncoder()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/ |
D | TestUtils.java | 33 import java.nio.charset.Charset; 163 Charset cs = CharsetICU.forNameICU(charsetName); in getEncoder()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | XCldrStub.java | 11 import java.nio.charset.Charset; 380 public static final Charset UTF8 = Charset.forName("utf-8"); 386 public static BufferedReader openFile(Class<?> class1, String file, Charset charset) { in openFile()
|
/third_party/libxml2/win32/ |
D | libxml2.rc | 19 BLOCK "04090000" /* Lang = US English, Charset = ASCII */
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | microhttpd_dll_res.rc.in | 17 BLOCK "04090000" /* Lang = US English, Charset = ASCII */
|
/third_party/skia/third_party/externals/microhttpd/w32/VS2013/ |
D | microhttpd_dll_res_vc.rc | 21 BLOCK "04090000" /* Lang = US English, Charset = ASCII */
|
D | microhttpd_dll_res_vc.rc.in | 21 BLOCK "04090000" /* Lang = US English, Charset = ASCII */
|