/ndk/sources/cxx-stl/stlport/src/ |
D | _stdio_file.h | 41 inline int _FILE_fd(const FILE *__f) { in _FILE_fd() argument 52 if (__f == _getstdfilex(__fd)) in _FILE_fd() 57 return (int)::_fileno((FILE*)__f); in _FILE_fd() 62 inline int _FILE_fd(const FILE *__f) { return __f->__file; } 66 inline int _FILE_fd(const FILE *__f) { return (int) __f->__pad[2]; } 72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); } 76 inline int _FILE_fd(const FILE *__f) { return __f->_fileno; } 80 inline int _FILE_fd(const FILE *__f) { return __f->fd; } 91 inline int _FILE_fd(const FILE *__f) { return ::fileno(__CONST_CAST(FILE*, __f)); } 93 inline int _FILE_fd(const FILE *__f) { return ::_fileno(__CONST_CAST(FILE*, __f)); } [all …]
|
D | stdio_streambuf.h | 75 stdio_istreambuf(FILE* __f) : stdio_streambuf_base(__f) {} in stdio_istreambuf() argument 87 stdio_ostreambuf(FILE* __f) : stdio_streambuf_base(__f) {} in stdio_ostreambuf() argument
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _num_put.h | 60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 62 return do_put(__s, __f, __fill, __val); in put() 65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 67 return do_put(__s, __f, __fill, __val); in put() 70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 72 return do_put(__s, __f, __fill, __val); in put() 76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 78 return do_put(__s, __f, __fill, __val); in put() 81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put() argument 83 return do_put(__s, __f, __fill, __val); in put() [all …]
|
D | _num_put.c | 75 ios_base& __f, wchar_t __fill, in __put_float() argument 78 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc()); in __put_float() 89 __f.flags(), __f.width(0), __fill, __ct.widen('+'), __ct.widen('-')); in __put_float() 97 ios_base& __f, char __fill, in __put_float() argument 110 __f.flags(), __f.width(0), __fill, '+', '-'); in __put_float() 115 __do_put_float(_OutputIter __s, ios_base& __f, in __do_put_float() argument 119 size_t __group_pos = __write_float(__buf, __f.flags(), (int)__f.precision(), __x); in __do_put_float() 121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); in __do_put_float() 122 return __put_float(__buf, __s, __f, __fill, in __do_put_float() 131 inline void __get_money_digits_aux (__iowstring &__wbuf, ios_base &__f, _STLP_LONGEST_FLOAT_TYPE __… in __get_money_digits_aux() argument [all …]
|
D | _hash_map.h | 105 hash_map(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 109 hash_map(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 111 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 113 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 116 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 119 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 122 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 125 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 129 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() [all …]
|
D | _hash_set.h | 107 hash_set(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 109 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 113 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 115 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 118 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 120 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 124 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 127 hash_set(_InputIterator __f, _InputIterator __l, size_type __n, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 130 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() [all …]
|
D | _iomanip.h | 38 _Ios_Manip_1(__f_ptr_type __f, const _Arg& __arg) in _Ios_Manip_1() 39 : _M_f(__f), _M_arg(__arg) {} in _Ios_Manip_1() 54 _Ios_Setf_Manip(ios_base::fmtflags __f) in _Ios_Setf_Manip() 55 : _M_flag(__f), _M_mask(0), _M_two_args(false) {} in _Ios_Setf_Manip() 57 _Ios_Setf_Manip(ios_base::fmtflags __f, ios_base::fmtflags __m) in _Ios_Setf_Manip() 58 : _M_flag(__f), _M_mask(__m), _M_two_args(true) {} in _Ios_Setf_Manip() 73 const _STLP_PRIV _Ios_Manip_1<_Arg>& __f) { 74 __f(__istr); 81 const _STLP_PRIV _Ios_Manip_1<_Arg>& __f) { 82 __f(__os); [all …]
|
D | _function_adaptors.h | 68 explicit _Mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Mem_fun0_ptr() argument 81 explicit _Mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ptr() argument 94 explicit _Const_mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun0_ptr() argument 107 explicit _Const_mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun1_ptr() argument 121 explicit _Mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun0_ref() argument 134 explicit _Mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ref() argument 147 explicit _Const_mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun0_ref() argument 160 explicit _Const_mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Const_mem_fun1_ref() argument 192 explicit _Ptr_fun1_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun1_base() argument 205 explicit _Ptr_fun2_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun2_base() argument [all …]
|
D | _string_workaround.h | 82 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument 86 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string() 90 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument 93 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string() 114 void _M_range_initialize(_InputIter __f, _InputIter __l, in _M_range_initialize() argument 118 _M_appendT(__f, __l, __tag); in _M_range_initialize() 122 void _M_range_initialize(_ForwardIter __f, _ForwardIter __l, in _M_range_initialize() argument 124 difference_type __n = _STLP_STD::distance(__f, __l); in _M_range_initialize() 126 this->_M_finish = uninitialized_copy(__f, __l, this->_M_Start()); in _M_range_initialize() 131 void _M_range_initializeT(_InputIter __f, _InputIter __l) { in _M_range_initializeT() argument [all …]
|
D | _hashtable.h | 425 void insert_unique(_InputIterator __f, _InputIterator __l) 426 { insert_unique(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); } 429 void insert_equal(_InputIterator __f, _InputIterator __l) 430 { insert_equal(__f, __l, _STLP_ITERATOR_CATEGORY(__f, _InputIterator)); } 433 void insert_unique(_InputIterator __f, _InputIterator __l, 435 for ( ; __f != __l; ++__f) 436 insert_unique(*__f); 440 void insert_equal(_InputIterator __f, _InputIterator __l, 442 for ( ; __f != __l; ++__f) 443 insert_equal(*__f); [all …]
|
D | _unordered_set.h | 89 unordered_set(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 94 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 96 unordered_set(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 101 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 103 unordered_set(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 108 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 133 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 135 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 136 {_M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 137 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() [all …]
|
D | _string.h | 261 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument 265 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string() 269 basic_string(_InputIterator __f, _InputIterator __l) in basic_string() argument 272 _M_initialize_dispatch(__f, __l, _Integral()); in basic_string() 277 basic_string(const _CharT* __f, const _CharT* __l, in basic_string() argument 280 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string() 281 _M_range_initialize(__f, __l); in basic_string() 284 basic_string(const _CharT* __f, const _CharT* __l) in basic_string() argument 286 _STLP_FIX_LITERAL_BUG(__f) _STLP_FIX_LITERAL_BUG(__l) in basic_string() 287 _M_range_initialize(__f, __l); in basic_string() [all …]
|
D | _unordered_map.h | 95 unordered_map(_InputIterator __f, _InputIterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 100 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 102 unordered_map(const value_type* __f, const value_type* __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 107 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 109 unordered_map(const_iterator __f, const_iterator __l, in _STLP_CREATE_HASH_ITERATOR_TRAITS() 114 { _M_ht.insert_unique(__f, __l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 139 void insert(_InputIterator __f, _InputIterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 141 void insert(const value_type* __f, const value_type* __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 142 { _M_ht.insert_unique(__f,__l); } in _STLP_CREATE_HASH_ITERATOR_TRAITS() 143 void insert(const_iterator __f, const_iterator __l) in _STLP_CREATE_HASH_ITERATOR_TRAITS() [all …]
|
D | _cmath.h | 536 template<typename _Tp> inline int __capture_isfinite(_Tp __f) { return isfinite(__f); } 537 template<typename _Tp> inline int __capture_isinf(_Tp __f) { return isinf(__f); } 538 template<typename _Tp> inline int __capture_isnan(_Tp __f) { return isnan(__f); } 539 template<typename _Tp> inline int __capture_signbit(_Tp __f) { return signbit(__f); } 546 template<typename _Tp> inline int isfinite(_Tp __f) { return __capture_isfinite(__f); } in isfinite() argument 547 template<typename _Tp> inline int isinf(_Tp __f) { return __capture_isinf(__f); } in isinf() argument 548 template<typename _Tp> inline int isnan(_Tp __f) { return __capture_isnan(__f); } in isnan() argument 549 template<typename _Tp> inline int signbit(_Tp __f) { return __capture_signbit(__f); } in signbit() argument
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | __functional_03 | 31 _LIBCPP_INLINE_VISIBILITY __mem_fn(type __f) : __f_(__f) {} 319 explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 320 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 401 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 402 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 403 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 484 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 485 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 486 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 567 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} [all …]
|
D | __functional_base_03 | 423 __invoke(_Rp (_Tp::*__f)(), _T1& __t1) 425 return (__t1.*__f)(); 435 __invoke(_Rp (_Tp::*__f)(_A0), _T1& __t1, _A0& __a0) 437 return (__t1.*__f)(__a0); 447 __invoke(_Rp (_Tp::*__f)(_A0, _A1), _T1& __t1, _A0& __a0, _A1& __a1) 449 return (__t1.*__f)(__a0, __a1); 459 __invoke(_Rp (_Tp::*__f)(_A0, _A1, _A2), _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) 461 return (__t1.*__f)(__a0, __a1, __a2); 471 __invoke(_Rp (_Tp::*__f)() const, _T1& __t1) 473 return (__t1.*__f)(); [all …]
|
D | functional | 692 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) 693 : __f_(__f) {} 701 ptr_fun(_Result (*__f)(_Arg)) 702 {return pointer_to_unary_function<_Arg,_Result>(__f);} 710 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) 711 : __f_(__f) {} 719 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) 720 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} 747 mem_fun(_Sp (_Tp::*__f)()) 748 {return mem_fun_t<_Sp,_Tp>(__f);} [all …]
|
D | future | 777 explicit __deferred_assoc_state(_Fp&& __f); 787 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) 788 : __func_(_VSTD::forward<_Fp>(__f)) 823 explicit __deferred_assoc_state(_Fp&& __f); 833 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) 834 : __func_(_VSTD::forward<_Fp>(__f)) 871 explicit __async_assoc_state(_Fp&& __f); 881 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) 882 : __func_(_VSTD::forward<_Fp>(__f)) 925 explicit __async_assoc_state(_Fp&& __f); [all …]
|
D | deque | 178 copy(_RAIter __f, 186 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 193 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 200 copy_backward(_RAIter __f, 208 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 215 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 222 move(_RAIter __f, 230 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 237 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 244 move_backward(_RAIter __f, [all …]
|
D | __functional_base | 298 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 299 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...)) 301 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...); 307 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 308 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...)) 310 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...); 318 __invoke(_Fp&& __f, _A0&& __a0) 319 -> decltype(_VSTD::forward<_A0>(__a0).*__f) 321 return _VSTD::forward<_A0>(__a0).*__f; 327 __invoke(_Fp&& __f, _A0&& __a0) [all …]
|
D | list | 528 static void __unlink_nodes(__node_base& __f, __node_base& __l) _NOEXCEPT; 636 // Unlink nodes [__f, __l] 640 __list_imp<_Tp, _Alloc>::__unlink_nodes(__node_base& __f, __node_base& __l) 643 __f.__prev_->__next_ = __l.__next_; 644 __l.__next_->__prev_ = __f.__prev_; 678 __node_pointer __f = __end_.__next_; 680 __unlink_nodes(*__f, *__l->__prev_); 682 while (__f != __l) 684 __node& __n = *__f; 685 __f = __f->__next_; [all …]
|
D | forward_list | 568 forward_list(_InputIterator __f, _InputIterator __l, 573 forward_list(_InputIterator __f, _InputIterator __l, 611 assign(_InputIterator __f, _InputIterator __l); 689 insert_after(const_iterator __p, _InputIterator __f, _InputIterator __l); 696 iterator erase_after(const_iterator __f, const_iterator __l); 716 const_iterator __f, const_iterator __l); 721 const_iterator __f, const_iterator __l); 759 __sort(__node_pointer __f, difference_type __sz, _Compare& __comp); 804 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l, 809 insert_after(cbefore_begin(), __f, __l); [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 82 void _Invalidate_iterators(const iterator& __f, const iterator& __l) in _Invalidate_iterators() argument 83 { _STLP_PRIV __invalidate_range(&_M_iter_list, __f, __l); } in _Invalidate_iterators() 133 basic_string(const _CharT* __f, const _CharT* __l, 135 : _ConstructCheck(__f, __l), in _ConstructCheck() argument 136 _M_non_dbg_impl(__f, __l, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck() 138 basic_string(const_iterator __f, const_iterator __l, 140 : _ConstructCheck(__f, __l), in _ConstructCheck() argument 141 _M_non_dbg_impl(__f._M_iterator, __l._M_iterator, __a), _M_iter_list(&_M_non_dbg_impl) { in _ConstructCheck() 145 basic_string(_InputIterator __f, _InputIterator __l, in basic_string() argument 147 : _ConstructCheck(__f, __l), in basic_string() [all …]
|
D | _hashtable.h | 227 void insert_unique(_InputIterator __f, _InputIterator __l) { in insert_unique() argument 228 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_unique() 229 _M_non_dbg_impl.insert_unique(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_unique() 233 void insert_equal(_InputIterator __f, _InputIterator __l){ in insert_equal() argument 234 _STLP_DEBUG_CHECK(_STLP_PRIV __check_range(__f, __l)) in insert_equal() 235 _M_non_dbg_impl.insert_equal(_STLP_PRIV _Non_Dbg_iter(__f), _STLP_PRIV _Non_Dbg_iter(__l)); in insert_equal() 239 void insert_unique(const value_type* __f, const value_type* __l) { in insert_unique() argument 240 _STLP_DEBUG_CHECK(_STLP_PRIV __check_ptr_range(__f, __l)) in insert_unique() 241 _M_non_dbg_impl.insert_unique(__f, __l); in insert_unique() 244 void insert_equal(const value_type* __f, const value_type* __l) { in insert_equal() argument [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/include/support/win32/ |
D | locale_win32.h | 90 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument 91 #define vsscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument 92 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 93 #define snprintf_l( __s, __n, __l, __f, ... ) _snprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument 94 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 95 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
|