Lines Matching refs:wstring

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()
189 inline float as_float(const string& func, const wstring& s, size_t* idx) { in as_float()
194 inline double as_float(const string& func, const wstring& s, size_t* idx) { in as_float()
199 inline long double as_float(const string& func, const wstring& s, size_t* idx) { in as_float()
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()
288 struct initial_string<wstring> {
289 wstring operator()() const { in operator ()()
290 wstring s(20, wchar_t()); in operator ()()
329 wstring to_wstring(int val) { return i_to_string<wstring>(val); } in to_wstring()
330 wstring to_wstring(long val) { return i_to_string<wstring>(val); } in to_wstring()
331 wstring to_wstring(long long val) { return i_to_string<wstring>(val); } in to_wstring()
332 wstring to_wstring(unsigned val) { return i_to_string<wstring>(val); } in to_wstring()
333 wstring to_wstring(unsigned long val) { return i_to_string<wstring>(val); } in to_wstring()
334 wstring to_wstring(unsigned long long val) { return i_to_string<wstring>(val); } in to_wstring()
342 wstring to_wstring(float val) { return as_string(get_swprintf(), initial_string<wstring>()(), L"%f"… in to_wstring()
343 wstring to_wstring(double val) { return as_string(get_swprintf(), initial_string<wstring>()(), L"%f… in to_wstring()
344 wstring to_wstring(long double val) { return as_string(get_swprintf(), initial_string<wstring>()(),… in to_wstring()