Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h200 inline bool to_float(const Twine &T, N &Num, N (*StrTo)(const char *, char **)) { in to_float() function
212 inline bool to_float(const Twine &T, float &Num) { in to_float() function
213 return detail::to_float(T, Num, strtof); in to_float()
216 inline bool to_float(const Twine &T, double &Num) { in to_float() function
217 return detail::to_float(T, Num, strtod); in to_float()
220 inline bool to_float(const Twine &T, long double &Num) { in to_float() function
221 return detail::to_float(T, Num, strtold); in to_float()
/freebsd-12.1/contrib/cortex-strings/scripts/
H A Dplot.py21 def to_float(v): function
43 rows = [[to_float(y) for y in x] for x in rows]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DStructuredData.cpp125 if (llvm::to_float(value, val)) in ParseJSONValue()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp1001 if (to_float(Scalar, Val)) in input()
1011 if (to_float(Scalar, Val)) in input()
H A DCommandLine.cpp1620 if (to_float(Arg, Value)) in parseDouble()