/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-dtoa.cc | 44 SHORTEST, enumerator 53 DoubleToStringConverter::DtoaMode mode = DoubleToStringConverter::SHORTEST; in DoubleToAscii() 55 case SHORTEST: mode = DoubleToStringConverter::SHORTEST; break; in DoubleToAscii() 88 DoubleToAscii(0.0, SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 106 DoubleToAscii(1.0, SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 126 DoubleToAscii(1.5, SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 147 DoubleToAscii(min_double, SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 169 DoubleToAscii(max_double, SHORTEST, 0, buffer, &sign, &length, &point); in TEST() 185 DoubleToAscii(4294967272.0, SHORTEST, in TEST() [all...] |
/third_party/python/Lib/email/ |
H A D | charset.py | 26 SHORTEST = 3 # the shorter of QP and base64, but only for headers 65 'utf-8': (SHORTEST, BASE64, 'utf-8'), 119 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for 120 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST 135 if body_enc == SHORTEST: 136 raise ValueError('SHORTEST not allowed for body_enc') 194 base64 encoding), or Charset.SHORTEST for the shortest of 199 header encoding. Charset.SHORTEST is not allowed for 235 (SHORTEST, BASE64, None)) 268 assert self.body_encoding != SHORTEST 25 SHORTEST = 3 # the shorter of QP and base64, but only for headers global() variable [all...] |
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | double-to-string.cc | 171 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE); in ToShortestIeeeNumber() 267 DoubleToAscii(value, SHORTEST, 0, in ToExponential() 368 case DoubleToStringConverter::SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode() 389 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE || requested_digits >= 0); in DoubleToAscii() 414 case SHORTEST: in DoubleToAscii()
|
H A D | double-to-string.h | 216 return ToShortestIeeeNumber(value, result_builder, SHORTEST); in ToShortest() 343 SHORTEST, enumerator 344 // Same as SHORTEST, but for single-precision floats. 367 // - SHORTEST: produce the least amount of digits for which the internal 374 // - SHORTEST_SINGLE: same as SHORTEST but with single-precision. 390 // digits and a terminating null-character. In SHORTEST-mode it expects a
|
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 186 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE); 282 DoubleToAscii(value, SHORTEST, 0, 384 case DoubleToStringConverter::SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode() 405 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE || requested_digits >= 0); in DoubleToAscii() 430 case SHORTEST: in DoubleToAscii()
|
H A D | double-conversion-double-to-string.h | 231 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 359 SHORTEST, enumerator 360 // Same as SHORTEST, but for single-precision floats. 383 // - SHORTEST: produce the least amount of digits for which the internal 390 // - SHORTEST_SINGLE: same as SHORTEST but with single-precision. 406 // digits and a terminating null-character. In SHORTEST-mode it expects a
|
H A D | number_utils.cpp | 146 DoubleToStringConverter::DtoaMode::SHORTEST, in setTo()
|
H A D | number_decimalquantity.cpp | 510 DoubleToStringConverter::DtoaMode::SHORTEST, in convertToAccurateDouble()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 193 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE); 289 DoubleToAscii(value, SHORTEST, 0, 391 case DoubleToStringConverter::SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode() 412 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE || requested_digits >= 0); in DoubleToAscii() 437 case SHORTEST: in DoubleToAscii()
|
H A D | double-conversion-double-to-string.h | 256 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 384 SHORTEST, enumerator 385 // Same as SHORTEST, but for single-precision floats. 408 // - SHORTEST: produce the least amount of digits for which the internal 415 // - SHORTEST_SINGLE: same as SHORTEST but with single-precision. 431 // digits and a terminating null-character. In SHORTEST-mode it expects a
|
H A D | number_utils.cpp | 146 DoubleToStringConverter::DtoaMode::SHORTEST, in setTo()
|
H A D | number_decimalquantity.cpp | 510 DoubleToStringConverter::DtoaMode::SHORTEST, in convertToAccurateDouble()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-double-to-string.cpp | 186 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE); 282 DoubleToAscii(value, SHORTEST, 0, 384 case DoubleToStringConverter::SHORTEST: return BIGNUM_DTOA_SHORTEST; in DtoaToBignumDtoaMode() 405 DOUBLE_CONVERSION_ASSERT(mode == SHORTEST || mode == SHORTEST_SINGLE || requested_digits >= 0); in DoubleToAscii() 430 case SHORTEST: in DoubleToAscii()
|
H A D | double-conversion-double-to-string.h | 231 return ToShortestIeeeNumber(value, result_builder, SHORTEST); 359 SHORTEST, enumerator 360 // Same as SHORTEST, but for single-precision floats. 383 // - SHORTEST: produce the least amount of digits for which the internal 390 // - SHORTEST_SINGLE: same as SHORTEST but with single-precision. 406 // digits and a terminating null-character. In SHORTEST-mode it expects a
|
H A D | number_utils.cpp | 146 DoubleToStringConverter::DtoaMode::SHORTEST, in setTo()
|
H A D | number_rounding.cpp | 101 DoubleToStringConverter::DtoaMode::SHORTEST, in doubleFractionLength()
|
H A D | number_decimalquantity.cpp | 497 DoubleToStringConverter::DtoaMode::SHORTEST, in convertToAccurateDouble()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numbertest_doubleconversion.cpp | 31 DoubleToStringConverter::DtoaMode::SHORTEST, in testDoubleConversionApi()
|