Home
last modified time | relevance | path

Searched refs:StrToNumeric (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/lexer/token/
Dnumber.cpp30 const int64_t temp = Lexer::StrToNumeric(&std::strtoll, utf8.c_str(), res, 10); in Number()
46 const double temp = Lexer::StrToNumeric(&std::strtod, utf8.c_str(), res); in Number()
/arkcompiler/ets_frontend/ets2panda/lexer/
Dlexer.h166 static Ret StrToNumeric(Tret (*converter)(const char *, char **, Base...), const char *str, in StrToNumeric() function
Dlexer.cpp284 const long double temp = StrToNumeric(&std::strtold, utf8.c_str(), res); in ConvertNumber()