/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | deque | 1191 typedef __deque_base<value_type, allocator_type> __base; 1193 typedef typename __base::__alloc_traits __alloc_traits; 1194 typedef typename __base::reference reference; 1195 typedef typename __base::const_reference const_reference; 1196 typedef typename __base::iterator iterator; 1197 typedef typename __base::const_iterator const_iterator; 1198 typedef typename __base::size_type size_type; 1199 typedef typename __base::difference_type difference_type; 1201 typedef typename __base::pointer pointer; 1202 typedef typename __base::const_pointer const_pointer; [all …]
|
D | limits | 443 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base; 444 typedef typename __base::type type; 446 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized; 447 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();} 448 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();} 449 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(… 451 static _LIBCPP_CONSTEXPR const int digits = __base::digits; 452 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10; 453 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10; 454 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed; [all …]
|
D | __functional_03 | 233 template<class _Fp> class __base; 236 class __base<_Rp()> 238 __base(const __base&); 239 __base& operator=(const __base&); 241 __base() {} 242 virtual ~__base() {} 243 virtual __base* __clone() const = 0; 244 virtual void __clone(__base*) const = 0; 255 class __base<_Rp(_A0)> 257 __base(const __base&); [all …]
|
D | functional | 1272 template<class _Fp> class __base; 1275 class __base<_Rp(_ArgTypes...)> 1277 __base(const __base&); 1278 __base& operator=(const __base&); 1280 _LIBCPP_INLINE_VISIBILITY __base() {} 1281 _LIBCPP_INLINE_VISIBILITY virtual ~__base() {} 1282 virtual __base* __clone() const = 0; 1283 virtual void __clone(__base*) const = 0; 1297 : public __base<_Rp(_ArgTypes...)> 1319 virtual __base<_Rp(_ArgTypes...)>* __clone() const; [all …]
|
D | set | 411 typedef __tree<value_type, value_compare, allocator_type> __base; 413 typedef typename __base::__node_holder __node_holder; 415 __base __tree_; 418 typedef typename __base::pointer pointer; 419 typedef typename __base::const_pointer const_pointer; 420 typedef typename __base::size_type size_type; 421 typedef typename __base::difference_type difference_type; 422 typedef typename __base::const_iterator iterator; 423 typedef typename __base::const_iterator const_iterator; 487 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) [all …]
|
D | future | 1827 typedef __packaged_task_base<_Rp(_ArgTypes...)> __base; 1829 __base* __f_; 1860 else if (__f.__f_ == (__base*)&__f.__buf_) 1862 __f_ = (__base*)&__buf_; 1881 __f_ = (__base*)&__buf_; 1889 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 1906 __f_ = (__base*)&__buf_; 1920 unique_ptr<__base, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 1930 if (__f_ == (__base*)&__buf_) 1937 else if (__f.__f_ == (__base*)&__f.__buf_) [all …]
|
D | map | 821 typedef __tree<__value_type, __vc, __allocator_type> __base; 822 typedef typename __base::__node_traits __node_traits; 825 __base __tree_; 832 typedef __map_iterator<typename __base::iterator> iterator; 833 typedef __map_const_iterator<typename __base::const_iterator> const_iterator; 908 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) 917 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) 1086 _NOEXCEPT_(__is_nothrow_swappable<__base>::value) 1160 typedef typename __base::__node __node; 1161 typedef typename __base::__node_allocator __node_allocator; [all …]
|
D | vector | 485 typedef __vector_base<_Tp, _Allocator> __base; 491 typedef typename __base::__alloc_traits __alloc_traits; 492 typedef typename __base::reference reference; 493 typedef typename __base::const_reference const_reference; 494 typedef typename __base::size_type size_type; 495 typedef typename __base::difference_type difference_type; 496 typedef typename __base::pointer pointer; 497 typedef typename __base::const_pointer const_pointer; 515 : __base(__a) 660 {return __base::capacity();} [all …]
|
D | atomic | 911 typedef __atomic_base<_Tp, false> __base; 915 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {} 992 typedef __atomic_base<_Tp> __base; 996 _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {} 1000 {__base::store(__d); return __d;} 1003 {__base::store(__d); return __d;} 1012 typedef __atomic_base<_Tp*> __base; 1016 _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {} 1020 {__base::store(__d); return __d;} 1023 {__base::store(__d); return __d;}
|
D | locale | 555 static int __stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 591 __num_get<_CharT>::__stage2_int_loop(_CharT __ct, int __base, char* __a, char*& __a_end, 613 switch (__base) 617 if (__f >= __base) 860 ios_base::iostate& __err, int __base) 867 long long __ll = strtoll_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); 895 ios_base::iostate& __err, int __base) 907 unsigned long long __ll = strtoull_l(__a, &__p2, __base, _LIBCPP_GET_C_LOCALE); 1001 int __base = this->__get_base(__iob); 1023 if (this->__stage2_int_loop(*__b, __base, __a, __a_end, __dc, [all …]
|
D | iomanip | 167 setbase(int __base) 169 return __iom_t3(__base);
|
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); 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… 4145 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10… 4146 _LIBCPP_FUNC_VIS long long stoll (const wstring& __str, size_t* __idx = 0, int __base = 10… 4147 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…
|
D | random | 3645 _RealType __base = _Rp; 3647 for (size_t __i = 1; __i < __k; ++__i, __base *= _Rp) 3648 _Sp += (__g() - _URNG::min()) * __base; 3649 return _Sp / __base;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
D | xlocale.h | 127 int __base, locale_t __loc) { in strtoll_l() argument 128 return strtoll(__nptr, __endptr, __base); in strtoll_l() 132 int __base, locale_t __loc) { in strtol_l() argument 133 return strtol(__nptr, __endptr, __base); in strtol_l() 142 int __base, locale_t __loc) { in strtoull_l() argument 143 return strtoull(__nptr, __endptr, __base); in strtoull_l() 147 int __base, locale_t __loc) { in strtoul_l() argument 148 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 278 int __base, locale_t locale) { in strtoll_l() argument 279 return strtoll(__nptr, __endptr, __base); in strtoll_l() 283 int __base, locale_t locale) { in strtol_l() argument 284 return strtol(__nptr, __endptr, __base); in strtol_l() 293 int __base, locale_t locale) { in strtoull_l() argument 294 return strtoull(__nptr, __endptr, __base); in strtoull_l() 298 int __base, locale_t locale) { in strtoul_l() argument 299 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _num_get.c | 71 int __base; in __get_base_or_zero() local 78 __base = 8; in __get_base_or_zero() 81 __base = 10; in __get_base_or_zero() 84 __base = 16; in __get_base_or_zero() 100 __base = 16; in __get_base_or_zero() 104 __base = 8; in __get_base_or_zero() 109 __base = 10; in __get_base_or_zero() 112 return (__base << 2) | ((int)__negative << 1) | __valid_zero; in __get_base_or_zero() 119 int __base, _Integer& __val, in __get_integer() argument 128 _Integer __over_base = (numeric_limits<_Integer>::min)() / __STATIC_CAST(_Integer, __base); in __get_integer() [all …]
|
D | _rope.c | 621 rope<_CharT,_Alloc>::_S_substring(_RopeRep* __base, in _S_substring() argument 623 if (0 == __base) return 0; in _S_substring() 624 size_t __len = __base->_M_size._M_data; in _S_substring() 630 __base->_M_ref_nonnil(); in _S_substring() 631 return __base; in _S_substring() 638 switch(__base->_M_tag) { in _S_substring() 641 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __base); in _S_substring() 663 _RopeLeaf* __l = __STATIC_CAST(_RopeLeaf*, __base); in _S_substring() 672 __base->get_allocator()); in _S_substring() 678 _RopeSubstring* __old = __STATIC_CAST(_RopeSubstring*, __base); in _S_substring() [all …]
|
D | _iomanip.h | 111 ios_base::fmtflags __base = __n == 8 ? ios_base::oct : in setbase() local 115 return _STLP_PRIV _Ios_Setf_Manip(__base, ios_base::basefield); in setbase()
|
D | _rope.h | 1162 static _RopeRep* _S_substring(_RopeRep* __base,
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _debug.c | 121 void _STLP_CALL __invalidate_range(const __owned_list* __base, in __invalidate_range() argument 125 _STLP_ACQUIRE_LOCK(__base->_M_lock) in __invalidate_range() 126 _L_type* __prev = __CONST_CAST(_L_type*, &__base->_M_node); in __invalidate_range() 142 _STLP_RELEASE_LOCK(__base->_M_lock) in __invalidate_range() 146 void _STLP_CALL __invalidate_iterator(const __owned_list* __base, in __invalidate_iterator() argument 149 _STLP_ACQUIRE_LOCK(__base->_M_lock) in __invalidate_iterator() 150 _L_type* __prev = __CONST_CAST(_L_type*, &__base->_M_node); in __invalidate_iterator() 164 _STLP_RELEASE_LOCK(__base->_M_lock) in __invalidate_iterator() 177 __owned_list *__base = __CONST_CAST(__owned_list*, __first._Owner()); in __change_range_owner() local 178 _L_type* __src_prev = &__base->_M_node; in __change_range_owner() [all …]
|
D | _debug.h | 398 void _STLP_CALL __invalidate_range(const __owned_list* __base, 403 void _STLP_CALL __invalidate_iterator(const __owned_list* __base,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | optional | 289 typedef __optional_storage<_Tp> __base; 310 : __base(__v) {} 312 : __base(_VSTD::move(__v)) {} 323 : __base(in_place, _VSTD::forward<_Args>(__args)...) {} 334 : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {}
|