• Home
  • Raw
  • Download

Lines Matching refs:idx

62 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f)  in as_integer_helper()  argument
74 if (idx) in as_integer_helper()
75 *idx = static_cast<size_t>(ptr - p); in as_integer_helper()
82 as_integer(const string& func, const S& s, size_t* idx, int base);
88 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
91 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer()
100 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
102 return as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer()
108 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
110 return as_integer_helper<unsigned long>( func, s, idx, base, strtoul ); in as_integer()
116 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
118 return as_integer_helper<long long>( func, s, idx, base, strtoll ); in as_integer()
124 as_integer( const string& func, const string& s, size_t* idx, int base ) in as_integer() argument
126 return as_integer_helper<unsigned long long>( func, s, idx, base, strtoull ); in as_integer()
133 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer() argument
136 long r = as_integer_helper<long>( func, s, idx, base, wcstol ); in as_integer()
145 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer() argument
147 return as_integer_helper<long>( func, s, idx, base, wcstol ); in as_integer()
153 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer() argument
155 return as_integer_helper<unsigned long>( func, s, idx, base, wcstoul ); in as_integer()
161 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer() argument
163 return as_integer_helper<long long>( func, s, idx, base, wcstoll ); in as_integer()
169 as_integer( const string& func, const wstring& s, size_t* idx, int base ) in as_integer() argument
171 return as_integer_helper<unsigned long long>( func, s, idx, base, wcstoull ); in as_integer()
179 as_float_helper(const string& func, const S& str, size_t* idx, F f ) in as_float_helper() argument
191 if (idx) in as_float_helper()
192 *idx = static_cast<size_t>(ptr - p); in as_float_helper()
198 V as_float( const string& func, const S& s, size_t* idx = nullptr );
203 as_float( const string& func, const string& s, size_t* idx ) in as_float() argument
205 return as_float_helper<float>( func, s, idx, strtof ); in as_float()
211 as_float(const string& func, const string& s, size_t* idx ) in as_float() argument
213 return as_float_helper<double>( func, s, idx, strtod ); in as_float()
219 as_float( const string& func, const string& s, size_t* idx ) in as_float() argument
221 return as_float_helper<long double>( func, s, idx, strtold ); in as_float()
227 as_float( const string& func, const wstring& s, size_t* idx ) in as_float() argument
229 return as_float_helper<float>( func, s, idx, wcstof ); in as_float()
235 as_float( const string& func, const wstring& s, size_t* idx ) in as_float() argument
237 return as_float_helper<double>( func, s, idx, wcstod ); in as_float()
243 as_float( const string& func, const wstring& s, size_t* idx ) in as_float() argument
245 return as_float_helper<long double>( func, s, idx, wcstold ); in as_float()
251 stoi(const string& str, size_t* idx, int base) in stoi() argument
253 return as_integer<int>( "stoi", str, idx, base ); in stoi()
257 stoi(const wstring& str, size_t* idx, int base) in stoi() argument
259 return as_integer<int>( "stoi", str, idx, base ); in stoi()
263 stol(const string& str, size_t* idx, int base) in stol() argument
265 return as_integer<long>( "stol", str, idx, base ); in stol()
269 stol(const wstring& str, size_t* idx, int base) in stol() argument
271 return as_integer<long>( "stol", str, idx, base ); in stol()
275 stoul(const string& str, size_t* idx, int base) in stoul() argument
277 return as_integer<unsigned long>( "stoul", str, idx, base ); in stoul()
281 stoul(const wstring& str, size_t* idx, int base) in stoul() argument
283 return as_integer<unsigned long>( "stoul", str, idx, base ); in stoul()
287 stoll(const string& str, size_t* idx, int base) in stoll() argument
289 return as_integer<long long>( "stoll", str, idx, base ); in stoll()
293 stoll(const wstring& str, size_t* idx, int base) in stoll() argument
295 return as_integer<long long>( "stoll", str, idx, base ); in stoll()
299 stoull(const string& str, size_t* idx, int base) in stoull() argument
301 return as_integer<unsigned long long>( "stoull", str, idx, base ); in stoull()
305 stoull(const wstring& str, size_t* idx, int base) in stoull() argument
307 return as_integer<unsigned long long>( "stoull", str, idx, base ); in stoull()
311 stof(const string& str, size_t* idx) in stof() argument
313 return as_float<float>( "stof", str, idx ); in stof()
317 stof(const wstring& str, size_t* idx) in stof() argument
319 return as_float<float>( "stof", str, idx ); in stof()
323 stod(const string& str, size_t* idx) in stod() argument
325 return as_float<double>( "stod", str, idx ); in stod()
329 stod(const wstring& str, size_t* idx) in stod() argument
331 return as_float<double>( "stod", str, idx ); in stod()
335 stold(const string& str, size_t* idx) in stold() argument
337 return as_float<long double>( "stold", str, idx ); in stold()
341 stold(const wstring& str, size_t* idx) in stold() argument
343 return as_float<long double>( "stold", str, idx ); in stold()