Lines Matching refs:wstring

508 typedef basic_string<wchar_t> wstring;
533 int stoi (const wstring& str, size_t* idx = nullptr, int base = 10);
534 long stol (const wstring& str, size_t* idx = nullptr, int base = 10);
535 unsigned long stoul (const wstring& str, size_t* idx = nullptr, int base = 10);
536 long long stoll (const wstring& str, size_t* idx = nullptr, int base = 10);
537 unsigned long long stoull(const wstring& str, size_t* idx = nullptr, int base = 10);
539 float stof (const wstring& str, size_t* idx = nullptr);
540 double stod (const wstring& str, size_t* idx = nullptr);
541 long double stold(const wstring& str, size_t* idx = nullptr);
543 wstring to_wstring(int val);
544 wstring to_wstring(unsigned val);
545 wstring to_wstring(long val);
546 wstring to_wstring(unsigned long val);
547 wstring to_wstring(long long val);
548 wstring to_wstring(unsigned long long val);
549 wstring to_wstring(float val);
550 wstring to_wstring(double val);
551 wstring to_wstring(long double val);
557 template <> struct hash<wstring>;
4020 _LIBCPP_EXPORTED_FROM_ABI int stoi(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4021 _LIBCPP_EXPORTED_FROM_ABI long stol(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4022 _LIBCPP_EXPORTED_FROM_ABI unsigned long stoul(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4023 _LIBCPP_EXPORTED_FROM_ABI long long stoll(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4024 _LIBCPP_EXPORTED_FROM_ABI unsigned long long stoull(const wstring& __str, size_t* __idx = nullptr, int __base = 10);
4026 _LIBCPP_EXPORTED_FROM_ABI float stof(const wstring& __str, size_t* __idx = nullptr);
4027 _LIBCPP_EXPORTED_FROM_ABI double stod(const wstring& __str, size_t* __idx = nullptr);
4028 _LIBCPP_EXPORTED_FROM_ABI long double stold(const wstring& __str, size_t* __idx = nullptr);
4030 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(int __val);
4031 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(unsigned __val);
4032 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(long __val);
4033 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(unsigned long __val);
4034 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(long long __val);
4035 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(unsigned long long __val);
4036 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(float __val);
4037 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(double __val);
4038 _LIBCPP_EXPORTED_FROM_ABI wstring to_wstring(long double __val);