Searched refs:as_float_helper (Results 1 – 1 of 1) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | string.cpp | 183 as_float_helper(const string& func, const S& str, size_t* idx, F f ) in as_float_helper() function 209 return as_float_helper<float>( func, s, idx, strtod ); in as_float() 217 return as_float_helper<double>( func, s, idx, strtod ); in as_float() 225 return as_float_helper<long double>( func, s, idx, strtold ); in as_float() 233 return as_float_helper<float>( func, s, idx, wcstod ); in as_float() 241 return as_float_helper<double>( func, s, idx, wcstod ); in as_float() 249 return as_float_helper<long double>( func, s, idx, wcstold ); in as_float()
|