Lines Matching refs:as_integer
102 inline V as_integer(const string& func, const S& s, size_t* idx, int base);
106 inline int as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
115 inline long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
120 inline unsigned long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
125 inline long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
130 inline unsigned long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
137 inline int as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
146 inline long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
153 as_integer(const string& func, const wstring& s, size_t* idx, int base) in as_integer() function
159 inline long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
164 inline unsigned long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
226 return as_integer<int>("stoi", str, idx, base); in stoi()
230 return as_integer<long>("stol", str, idx, base); in stol()
234 return as_integer<unsigned long>("stoul", str, idx, base); in stoul()
238 return as_integer<long long>("stoll", str, idx, base); in stoll()
242 return as_integer<unsigned long long>("stoull", str, idx, base); in stoull()
259 return as_integer<int>("stoi", str, idx, base); in stoi()
263 return as_integer<long>("stol", str, idx, base); in stol()
267 return as_integer<unsigned long>("stoul", str, idx, base); in stoul()
271 return as_integer<long long>("stoll", str, idx, base); in stoll()
275 return as_integer<unsigned long long>("stoull", str, idx, base); in stoull()