Searched refs:test_integer_to_chars (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/charconv/charconv.msvc/ |
H A D | test.cpp | 164 void test_integer_to_chars(const T value, const optional<int> opt_base, const string_view correct) { in test_integer_to_chars() function 354 void test_integer_to_chars() { in test_integer_to_chars() function 356 test_integer_to_chars(static_cast<T>(0), base, "0"); in test_integer_to_chars() 357 test_integer_to_chars(static_cast<T>(1), base, "1"); in test_integer_to_chars() 360 test_integer_to_chars(static_cast<T>(base * 2 - 1), base, output_max_digit[base]); in test_integer_to_chars() 364 … test_integer_to_chars(static_cast<T>(p.first), base, p.second[static_cast<std::size_t>(base)]); in test_integer_to_chars() 369 test_integer_to_chars(static_cast<T>(-1), base, "-1"); in test_integer_to_chars() 373 … test_integer_to_chars(static_cast<T>(p.first), base, p.second[static_cast<std::size_t>(base)]); in test_integer_to_chars() 379 test_integer_to_chars(static_cast<T>(42), nullopt, "42"); in test_integer_to_chars() 509 test_integer_to_chars<T>(); in test_integer()
|