Home
last modified time | relevance | path

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

/src/contrib/llvm-project/libcxx/src/
H A Dstring.cpp69 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) { in as_integer_helper() function
92 long r = as_integer_helper<long>(func, s, idx, base, strtol); in as_integer()
100 return as_integer_helper<long>(func, s, idx, base, strtol); in as_integer()
105 return as_integer_helper<unsigned long>(func, s, idx, base, strtoul); in as_integer()
110 return as_integer_helper<long long>(func, s, idx, base, strtoll); in as_integer()
115 return as_integer_helper<unsigned long long>(func, s, idx, base, strtoull); in as_integer()
123 long r = as_integer_helper<long>(func, s, idx, base, wcstol); in as_integer()
131 return as_integer_helper<long>(func, s, idx, base, wcstol); in as_integer()
136 return as_integer_helper<unsigned long>(func, s, idx, base, wcstoul); in as_integer()
141 return as_integer_helper<long long>(func, s, idx, base, wcstoll); in as_integer()
[all …]