Lines Matching refs:wstring
446 typedef basic_string<wchar_t> wstring;
470 int stoi (const wstring& str, size_t* idx = 0, int base = 10);
471 long stol (const wstring& str, size_t* idx = 0, int base = 10);
472 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
473 long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
474 unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
476 float stof (const wstring& str, size_t* idx = 0);
477 double stod (const wstring& str, size_t* idx = 0);
478 long double stold(const wstring& str, size_t* idx = 0);
480 wstring to_wstring(int val);
481 wstring to_wstring(unsigned val);
482 wstring to_wstring(long val);
483 wstring to_wstring(unsigned long val);
484 wstring to_wstring(long long val);
485 wstring to_wstring(unsigned long long val);
486 wstring to_wstring(float val);
487 wstring to_wstring(double val);
488 wstring to_wstring(long double val);
493 template <> struct hash<wstring>;
4207 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
4208 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
4209 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
4210 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
4211 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
4213 _LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
4214 _LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
4215 _LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
4217 _LIBCPP_FUNC_VIS wstring to_wstring(int __val);
4218 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
4219 _LIBCPP_FUNC_VIS wstring to_wstring(long __val);
4220 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
4221 _LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
4222 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
4223 _LIBCPP_FUNC_VIS wstring to_wstring(float __val);
4224 _LIBCPP_FUNC_VIS wstring to_wstring(double __val);
4225 _LIBCPP_FUNC_VIS wstring to_wstring(long double __val);