Searched refs:as_float_helper (Results 1 – 1 of 1) sorted by relevance
| /src/contrib/llvm-project/libcxx/src/ |
| H A D | string.cpp | 153 inline V as_float_helper(const string& func, const S& str, size_t* idx, F f) { in as_float_helper() function 174 return as_float_helper<float>(func, s, idx, strtof); in as_float() 179 return as_float_helper<double>(func, s, idx, strtod); in as_float() 184 return as_float_helper<long double>(func, s, idx, strtold); in as_float() 190 return as_float_helper<float>(func, s, idx, wcstof); in as_float() 195 return as_float_helper<double>(func, s, idx, wcstod); in as_float() 200 return as_float_helper<long double>(func, s, idx, wcstold); in as_float()
|