Searched refs:__idx (Results 1 – 3 of 3) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _valarray.h | 1442 size_t __idx = 0; 1444 if (_M_mask[__i]) _M_array[__i] = __x[__idx++]; 1448 size_t __idx = 0; 1450 if (_M_mask[__i]) _M_array[__i] *= __x[__idx++]; 1454 size_t __idx = 0; 1456 if (_M_mask[__i]) _M_array[__i] /= __x[__idx++]; 1460 size_t __idx = 0; 1462 if (_M_mask[__i]) _M_array[__i] %= __x[__idx++]; 1466 size_t __idx = 0; 1468 if (_M_mask[__i]) _M_array[__i] += __x[__idx++]; [all …]
|
D | _valarray.c | 116 size_t __idx = 0; variable 119 if (__mask[__i]) __tmp[__idx++] = (*this)[__i];
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 4123 _LIBCPP_FUNC_VIS int stoi (const string& __str, size_t* __idx = 0, int __base = 10); 4124 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 4125 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10); 4126 _LIBCPP_FUNC_VIS long long stoll (const string& __str, size_t* __idx = 0, int __base = 10); 4127 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10); 4129 _LIBCPP_FUNC_VIS float stof (const string& __str, size_t* __idx = 0); 4130 _LIBCPP_FUNC_VIS double stod (const string& __str, size_t* __idx = 0); 4131 _LIBCPP_FUNC_VIS long double stold(const string& __str, size_t* __idx = 0); 4143 _LIBCPP_FUNC_VIS int stoi (const wstring& __str, size_t* __idx = 0, int __base = 10… 4144 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10… [all …]
|