Home | History | Annotate | Download | only in include

Lines Matching full:wstring

376 typedef basic_string<wchar_t> wstring;
400 int stoi (const wstring& str, size_t* idx = 0, int base = 10);
401 long stol (const wstring& str, size_t* idx = 0, int base = 10);
402 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
403 long long stoll (const wstring& str, size_t* idx = 0, int base = 10);
404 unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
406 float stof (const wstring& str, size_t* idx = 0);
407 double stod (const wstring& str, size_t* idx = 0);
408 long double stold(const wstring& str, size_t* idx = 0);
410 wstring to_wstring(int val);
411 wstring to_wstring(unsigned val);
412 wstring to_wstring(long val);
413 wstring to_wstring(unsigned long val);
414 wstring to_wstring(long long val);
415 wstring to_wstring(unsigned long long val);
416 wstring to_wstring(float val);
417 wstring to_wstring(double val);
418 wstring to_wstring(long double val);
423 template <> struct hash<wstring>;
4096 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10);
4097 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10);
4098 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10);
4099 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10);
4100 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10);
4102 _LIBCPP_FUNC_VIS float stof (const wstring& __str, size_t* __idx = 0);
4103 _LIBCPP_FUNC_VIS double stod (const wstring& __str, size_t* __idx = 0);
4104 _LIBCPP_FUNC_VIS long double stold(const wstring& __str, size_t* __idx = 0);
4106 _LIBCPP_FUNC_VIS wstring to_wstring(int __val);
4107 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned __val);
4108 _LIBCPP_FUNC_VIS wstring to_wstring(long __val);
4109 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long __val);
4110 _LIBCPP_FUNC_VIS wstring to_wstring(long long __val);
4111 _LIBCPP_FUNC_VIS wstring to_wstring(unsigned long long __val);
4112 _LIBCPP_FUNC_VIS wstring to_wstring(float __val);
4113 _LIBCPP_FUNC_VIS wstring to_wstring(double __val);
4114 _LIBCPP_FUNC_VIS wstring to_wstring(long double __val);