Home
last modified time | relevance | path

Searched refs:strtod (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/include/support/solaris/
Dfloatingpoint.h2 #define strtod sun_strtod macro
5 #undef strtod
/ndk/sources/host-tools/sed-4.2.1/lib/
Dstdlib.in.h320 # define strtod rpl_strtod
324 extern double strtod (const char *str, char **endp);
327 # undef strtod
328 # define strtod(s, e) \
331 strtod (s, e))
/ndk/sources/cxx-stl/llvm-libc++/include/support/win32/
Dsupport.h46 _LIBCPP_ALWAYS_INLINE double strtod( const char *nptr, char **endptr ) in strtod() function
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcstdlib39 double strtod (const char* restrict nptr, char** restrict endptr);
109 using ::strtod;
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cstdlib.h80 using _STLP_VENDOR_CSTD::strtod;
/ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
Dstdlib_h.pass.cpp47 static_assert((std::is_same<decltype(strtod("", endptr)), double>::value), ""); in main()
/ndk/sources/cxx-stl/gabi++/include/
Dcstdlib61 using ::strtod;
/ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.runtime/
Dcstdlib.pass.cpp47 static_assert((std::is_same<decltype(std::strtod("", endptr)), double>::value), ""); in main()
/ndk/sources/cxx-stl/system/include/
Dcstdlib61 using ::strtod;
/ndk/sources/host-tools/nawk-20071023/
Dlex.c148 strtod(buf, &rem); /* parse the number */ in gettok()
Dlib.c687 r = strtod(s, &ep); in is_number()
DFIXES434 now using strtod to test whether a string is a number, instead of
436 reliable if strtod is implemented right.
/ndk/sources/cxx-stl/llvm-libc++/src/
Dstring.cpp296 double r = strtod(p, &ptr); in stod()