Home
last modified time | relevance | path

Searched refs:to_float (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h285 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 DOptionGroupPythonClassWithDict.cpp115 } else if (llvm::to_float(option_arg, d)) { in SetOptionValue()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp1070 if (to_float(Scalar, Val)) in input()
1080 if (to_float(Scalar, Val)) in input()
H A DCommandLine.cpp2050 if (to_float(Arg, Value)) in parseDouble()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DXML.cpp311 return GetElementText(text) && llvm::to_float(text, value); in GetElementTextAsFloat()