Searched refs:to_float (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 285 inline bool to_float(const Twine &T, N &Num, N (*StrTo)(const char *, char **)) { in to_float() function 297 inline bool to_float(const Twine &T, float &Num) { in to_float() function 298 return detail::to_float(T, Num, strtof); in to_float() 301 inline bool to_float(const Twine &T, double &Num) { in to_float() function 302 return detail::to_float(T, Num, strtod); in to_float() 305 inline bool to_float(const Twine &T, long double &Num) { in to_float() function 306 return detail::to_float(T, Num, strtold); in to_float()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionGroupPythonClassWithDict.cpp | 115 } else if (llvm::to_float(option_arg, d)) { in SetOptionValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | YAMLTraits.cpp | 1070 if (to_float(Scalar, Val)) in input() 1080 if (to_float(Scalar, Val)) in input()
|
H A D | CommandLine.cpp | 2050 if (to_float(Arg, Value)) in parseDouble()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | XML.cpp | 311 return GetElementText(text) && llvm::to_float(text, value); in GetElementTextAsFloat()
|