Lines Matching defs:base
69 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) { in as_integer_helper()
90 inline int as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
99 inline long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
104 inline unsigned long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
109 inline long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
114 inline unsigned long long as_integer(const string& func, const string& s, size_t* idx, int base) { in as_integer()
121 inline int as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
130 inline long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
135 inline unsigned long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
140 inline long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
145 inline unsigned long long as_integer(const string& func, const wstring& s, size_t* idx, int base) { in as_integer()
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()
210 unsigned long stoul(const string& str, size_t* idx, int base) { in stoul()
214 long long stoll(const string& str, size_t* idx, int base) { return as_integer<long long>("stoll", s… in stoll()
216 unsigned long long stoull(const string& str, size_t* idx, int 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()
231 unsigned long stoul(const wstring& str, size_t* idx, int base) { in stoul()
235 long long stoll(const wstring& str, size_t* idx, int base) { return as_integer<long long>("stoll", … in stoll()
237 unsigned long long stoull(const wstring& str, size_t* idx, int base) { in stoull()