Lines Matching refs:as_integer_helper
85 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) { in as_integer_helper() function
108 long r = as_integer_helper<long>(func, s, idx, base, strtol); in as_integer()
116 return as_integer_helper<long>(func, s, idx, base, strtol); in as_integer()
121 return as_integer_helper<unsigned long>(func, s, idx, base, strtoul); in as_integer()
126 return as_integer_helper<long long>(func, s, idx, base, strtoll); in as_integer()
131 return as_integer_helper<unsigned long long>(func, s, idx, base, strtoull); in as_integer()
139 long r = as_integer_helper<long>(func, s, idx, base, wcstol); in as_integer()
147 return as_integer_helper<long>(func, s, idx, base, wcstol); in as_integer()
155 return as_integer_helper<unsigned long>(func, s, idx, base, wcstoul); in as_integer()
160 return as_integer_helper<long long>(func, s, idx, base, wcstoll); in as_integer()
165 return as_integer_helper<unsigned long long>(func, s, idx, base, wcstoull); in as_integer()