HomeSort by relevance Sort by last modified time
    Searched defs:LiteAtoi (Results 1 - 2 of 2) sorted by null

  /external/libtextclassifier/lang_id/common/lite_strings/
numbers.h 41 bool LiteAtoi(const char *c_str, int *value);
43 inline bool LiteAtoi(const string &s, int *value) {
44 return LiteAtoi(s.c_str(), value);
47 inline bool LiteAtoi(StringPiece sp, int *value) {
48 // Unfortunately, we can't directly call LiteAtoi(sp.data()): LiteAtoi(const
51 return LiteAtoi(temp.c_str(), value);
54 // Like LiteAtoi, but for float; similar to absl::SimpleAtof.
65 // Unfortunately, we can't directly call LiteAtoi(sp.data()): LiteAtoi(cons
    [all...]
numbers.cc 41 bool LiteAtoi(const char *c_str, int *value) {
79 // strtof is similar to strtol, see more detailed comments inside LiteAtoi.

Completed in 64 milliseconds