Lines Matching refs:__idx
23001 const char* __name, const _CharT* __str, std::size_t* __idx, in __stoa() argument
23026 if (__idx) in __stoa()
23027 *__idx = __endptr - __str; in __stoa()
23066 stoi(const string& __str, size_t* __idx = 0, int __base = 10) in stoi() argument
23068 __idx, __base); } in stoi()
23071 stol(const string& __str, size_t* __idx = 0, int __base = 10) in stol() argument
23073 __idx, __base); } in stol()
23076 stoul(const string& __str, size_t* __idx = 0, int __base = 10) in stoul() argument
23078 __idx, __base); } in stoul()
23081 stoll(const string& __str, size_t* __idx = 0, int __base = 10) in stoll() argument
23083 __idx, __base); } in stoll()
23086 stoull(const string& __str, size_t* __idx = 0, int __base = 10) in stoull() argument
23088 __idx, __base); } in stoull()
23092 stof(const string& __str, size_t* __idx = 0) in stof() argument
23093 { return __gnu_cxx::__stoa(&std::strtof, "stof", __str.c_str(), __idx); } in stof()
23096 stod(const string& __str, size_t* __idx = 0) in stod() argument
23097 { return __gnu_cxx::__stoa(&std::strtod, "stod", __str.c_str(), __idx); } in stod()
23100 stold(const string& __str, size_t* __idx = 0) in stold() argument
23101 { return __gnu_cxx::__stoa(&std::strtold, "stold", __str.c_str(), __idx); } in stold()
23172 stoi(const wstring& __str, size_t* __idx = 0, int __base = 10) in stoi() argument
23174 __idx, __base); } in stoi()
23177 stol(const wstring& __str, size_t* __idx = 0, int __base = 10) in stol() argument
23179 __idx, __base); } in stol()
23182 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) in stoul() argument
23184 __idx, __base); } in stoul()
23187 stoll(const wstring& __str, size_t* __idx = 0, int __base = 10) in stoll() argument
23189 __idx, __base); } in stoll()
23192 stoull(const wstring& __str, size_t* __idx = 0, int __base = 10) in stoull() argument
23194 __idx, __base); } in stoull()
23198 stof(const wstring& __str, size_t* __idx = 0) in stof() argument
23199 { return __gnu_cxx::__stoa(&std::wcstof, "stof", __str.c_str(), __idx); } in stof()
23202 stod(const wstring& __str, size_t* __idx = 0) in stod() argument
23203 { return __gnu_cxx::__stoa(&std::wcstod, "stod", __str.c_str(), __idx); } in stod()
23206 stold(const wstring& __str, size_t* __idx = 0) in stold() argument
23207 { return __gnu_cxx::__stoa(&std::wcstold, "stold", __str.c_str(), __idx); } in stold()
30344 size_t __idx = 0; in __add_grouping() local
30347 while (__last - __first > __gbeg[__idx] in __add_grouping()
30348 && static_cast<signed char>(__gbeg[__idx]) > 0 in __add_grouping()
30349 && __gbeg[__idx] != __gnu_cxx::__numeric_traits<char>::__max) in __add_grouping()
30351 __last -= __gbeg[__idx]; in __add_grouping()
30352 __idx < __gsize - 1 ? ++__idx : ++__ctr; in __add_grouping()
30361 for (char __i = __gbeg[__idx]; __i > 0; --__i) in __add_grouping()
30365 while (__idx--) in __add_grouping()
30368 for (char __i = __gbeg[__idx]; __i > 0; --__i) in __add_grouping()
54295 typedef typename __make_1st_indices<_Tpls...>::__type __idx; in _S_do() typedef
54296 typedef __tuple_concater<_Ret, __idx, _Tpls...> __next; in _S_do()
54322 typedef typename __make_1st_indices<_Tpls...>::__type __idx; in tuple_cat() typedef
54323 typedef __tuple_concater<__ret, __idx, _Tpls...> __concater; in tuple_cat()