Searched refs:as_float_helper (Results 1 – 1 of 1) sorted by relevance
/external/libcxx/src/ |
D | string.cpp | 178 as_float_helper(const string& func, const S& str, size_t* idx, F f ) in as_float_helper() function 204 return as_float_helper<float>( func, s, idx, strtof ); in as_float() 212 return as_float_helper<double>( func, s, idx, strtod ); in as_float() 220 return as_float_helper<long double>( func, s, idx, strtold ); in as_float() 228 return as_float_helper<float>( func, s, idx, wcstof ); in as_float() 236 return as_float_helper<double>( func, s, idx, wcstod ); in as_float() 244 return as_float_helper<long double>( func, s, idx, wcstold ); in as_float()
|