Searched refs:SHORTEST (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/email/ |
D | charset.py | 24 SHORTEST = 3 # the shorter of QP and base64, but only for headers variable 60 'utf-8': (SHORTEST, BASE64, 'utf-8'), 131 if body_enc == SHORTEST: 224 (SHORTEST, BASE64, None)) 262 assert self.body_encoding != SHORTEST 340 elif self.header_encoding == SHORTEST: 368 elif self.header_encoding == SHORTEST:
|
/external/python/cpython3/Lib/email/ |
D | charset.py | 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers variable 63 'utf-8': (SHORTEST, BASE64, 'utf-8'), 132 if body_enc == SHORTEST: 230 (SHORTEST, BASE64, None)) 263 assert self.body_encoding != SHORTEST 365 elif self.header_encoding == SHORTEST:
|
/external/icu/icu4c/source/i18n/ |
D | double-conversion-double-to-string.cpp | 186 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE); 282 DoubleToAscii(value, SHORTEST, 0, 372 case DoubleToStringConverter::SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode() 393 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE || requested_digits >= 0); in DoubleToAscii() 418 case SHORTEST: in DoubleToAscii()
|
D | double-conversion-double-to-string.h | 181 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 302 SHORTEST, enumerator
|
D | number_utils.cpp | 146 DoubleToStringConverter::DtoaMode::SHORTEST, in setTo()
|
D | number_rounding.cpp | 101 DoubleToStringConverter::DtoaMode::SHORTEST, in doubleFractionLength()
|
D | number_decimalquantity.cpp | 494 DoubleToStringConverter::DtoaMode::SHORTEST, in convertToAccurateDouble()
|
/external/icu/libicu/cts_headers/ |
D | double-conversion-double-to-string.h | 181 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 302 SHORTEST, enumerator
|
/external/icu/icu4c/source/test/intltest/ |
D | numbertest_doubleconversion.cpp | 31 DoubleToStringConverter::DtoaMode::SHORTEST, in testDoubleConversionApi()
|
/external/python/cpython3/Doc/library/ |
D | email.charset.rst | 63 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, 71 ``Charset.SHORTEST`` is not allowed for *body_encoding*. 180 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding, 181 or ``None`` for no encoding. ``SHORTEST`` is only valid for
|
/external/python/cpython2/Doc/library/ |
D | email.charset.rst | 58 ``Charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, 66 ``Charset.SHORTEST`` is not allowed for *body_encoding*. 219 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding, 220 or ``None`` for no encoding. ``SHORTEST`` is only valid for
|