Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringExtras.h272 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 DYAMLTraits.cpp1045 if (to_float(Scalar, Val)) in input()
1055 if (to_float(Scalar, Val)) in input()
H A DCommandLine.cpp2052 if (to_float(Arg, Value)) in parseDouble()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DXML.cpp309 return GetElementText(text) && llvm::to_float(text, value); in GetElementTextAsFloat()