Lines Matching refs:wstring
457 typedef basic_string<wchar_t> wstring;
482 int stoi (const wstring& str, size_t* idx = nullptr, int base = 10);
483 long stol (const wstring& str, size_t* idx = nullptr, int base = 10);
484 unsigned long stoul (const wstring& str, size_t* idx = nullptr, int base = 10);
485 long long stoll (const wstring& str, size_t* idx = nullptr, int base = 10);
486 unsigned long long stoull(const wstring& str, size_t* idx = nullptr, int base = 10);
488 float stof (const wstring& str, size_t* idx = nullptr);
489 double stod (const wstring& str, size_t* idx = nullptr);
490 long double stold(const wstring& str, size_t* idx = nullptr);
492 wstring to_wstring(int val);
493 wstring to_wstring(unsigned val);
494 wstring to_wstring(long val);
495 wstring to_wstring(unsigned long val);
496 wstring to_wstring(long long val);
497 wstring to_wstring(unsigned long long val);
498 wstring to_wstring(float val);
499 wstring to_wstring(double val);
500 wstring to_wstring(long double val);
506 template <> struct hash<wstring>;
4412 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4413 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4414 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4415 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4416 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4418 _LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = nullptr);
4419 _LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = nullptr);
4420 _LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = nullptr);
4422 _LIBCPP_FUNC_VIS wstring to_wstring(int __val);
4423 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
4424 _LIBCPP_FUNC_VIS wstring to_wstring(long __val);
4425 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
4426 _LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
4427 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
4428 _LIBCPP_FUNC_VIS wstring to_wstring(float __val);
4429 _LIBCPP_FUNC_VIS wstring to_wstring(double __val);
4430 _LIBCPP_FUNC_VIS wstring to_wstring(long double __val);