Lines Matching refs:as_integer

86 inline V as_integer(const string& func, const S& s, size_t* idx, int base);
90 inline int as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
99 inline long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
104 inline unsigned long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
109 inline long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
114 inline unsigned long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer() function
121 inline int as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
130 inline long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
135 inline unsigned long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
140 inline long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
145 inline unsigned long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer() function
206 int stoi(const string& str, size_t* idx, int base) { return as_integer<int>("stoi", str, idx, base)… in stoi()
208 long stol(const string& str, size_t* idx, int base) { return as_integer<long>("stol", str, idx, bas… in stol()
211 return as_integer<unsigned long>("stoul", str, idx, base); in stoul()
214 long long stoll(const string& str, size_t* idx, int base) { return as_integer<long long>("stoll", s… in stoll()
217 return as_integer<unsigned long long>("stoull", str, idx, base); in stoull()
227 int stoi(const wstring& str, size_t* idx, int base) { return as_integer<int>("stoi", str, idx, base… in stoi()
229 long stol(const wstring& str, size_t* idx, int base) { return as_integer<long>("stol", str, idx, ba… in stol()
232 return as_integer<unsigned long>("stoul", str, idx, base); in stoul()
235 long long stoll(const wstring& str, size_t* idx, int base) { return as_integer<long long>("stoll", … in stoll()
238 return as_integer<unsigned long long>("stoull", str, idx, base); in stoull()