Home | History | Annotate | Download | only in lite_strings

Lines Matching refs:temp

49   // succession of digits.  If it finds some digits, it sets temp to point to
53 // If there were no digits at all, strtol() sets temp to be c_str (the start
55 char *temp = nullptr;
56 const long int parsed_value = strtol(c_str, &temp, 0); // NOLINT
71 return (temp != c_str) && OnlyWhitespaces(temp);
80 char *temp = nullptr;
81 *value = strtof(c_str, &temp);
82 return (temp != c_str) && OnlyWhitespaces(temp);