Searched refs:to_float (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 272 inline bool to_float(const Twine &T, N &Num, N (*StrTo)(const char *, char **)) { in to_float() function 284 inline bool to_float(const Twine &T, float &Num) { in to_float() function 285 return detail::to_float(T, Num, strtof); in to_float() 288 inline bool to_float(const Twine &T, double &Num) { in to_float() function 289 return detail::to_float(T, Num, strtod); in to_float() 292 inline bool to_float(const Twine &T, long double &Num) { in to_float() function 293 return detail::to_float(T, Num, strtold); in to_float()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | YAMLTraits.cpp | 1045 if (to_float(Scalar, Val)) in input() 1055 if (to_float(Scalar, Val)) in input()
|
| H A D | CommandLine.cpp | 2052 if (to_float(Arg, Value)) in parseDouble()
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | XML.cpp | 309 return GetElementText(text) && llvm::to_float(text, value); in GetElementTextAsFloat()
|