Searched refs:fromchars (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/libcxx/test/support/ |
D | charconv_test_helpers.h | 112 auto a = fromchars(buf, r.ptr, args...); in test_value() 122 static long long fromchars(char const* p, char const* ep, int base, true_type) in fromchars() function 131 static unsigned long long fromchars(char const* p, char const* ep, int base, false_type) in fromchars() function 140 static auto fromchars(char const* p, char const* ep, int base = 10) 141 -> decltype(fromchars(p, ep, base, std::is_signed<X>())) 143 return fromchars(p, ep, base, std::is_signed<X>());
|
/external/libcxx/test/support/ |
D | charconv_test_helpers.h | 113 auto a = fromchars(buf, r.ptr, args...); in test_value() 123 static auto fromchars(char const* p, char const* ep, int base, true_type) in fromchars() function 132 static auto fromchars(char const* p, char const* ep, int base, false_type) in fromchars() function 141 static auto fromchars(char const* p, char const* ep, int base = 10) 143 return fromchars(p, ep, base, std::is_signed<X>());
|