Lines Matching defs:str

69 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) {  in as_integer_helper()
153 inline V as_float_helper(const string& func, const S& str, size_t* idx, F f) { in as_float_helper()
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()
220 float stof(const string& str, size_t* idx) { return as_float<float>("stof", str, idx); } in stof()
222 double stod(const string& str, size_t* idx) { return as_float<double>("stod", str, idx); } in stod()
224 long double stold(const string& str, size_t* idx) { return as_float<long double>("stold", str, idx)… in stold()
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()
241 float stof(const wstring& str, size_t* idx) { return as_float<float>("stof", str, idx); } in stof()
243 double stod(const wstring& str, size_t* idx) { return as_float<double>("stod", str, idx); } in stod()
245 long double stold(const wstring& str, size_t* idx) { return as_float<long double>("stold", str, idx… in stold()