/external/llvm-project/libcxx/include/ |
D | __functional_03 | 107 explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) {} 108 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 192 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) … 193 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 194 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 278 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) … 279 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 280 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 364 …_LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) … 365 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) [all …]
|
D | __functional_base_03 | 74 __invoke(_Fn __f, _T1& __t1) { 75 return (__t1.*__f)(); 81 __invoke(_Fn __f, _T1& __t1, _A0& __a0) { 82 return (__t1.*__f)(__a0); 88 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) { 89 return (__t1.*__f)(__a0, __a1); 95 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) { 96 return (__t1.*__f)(__a0, __a1, __a2); 102 __invoke(_Fn __f, _T1& __t1) { 103 return ((*__t1).*__f)(); [all …]
|
D | functional | 1101 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) 1102 : __f_(__f) {} 1110 ptr_fun(_Result (*__f)(_Arg)) 1111 {return pointer_to_unary_function<_Arg,_Result>(__f);} 1119 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) 1120 : __f_(__f) {} 1128 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) 1129 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} 1158 mem_fun(_Sp (_Tp::*__f)()) 1159 {return mem_fun_t<_Sp,_Tp>(__f);} [all …]
|
D | future | 845 explicit __deferred_assoc_state(_Fp&& __f); 852 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) 853 : __func_(_VSTD::forward<_Fp>(__f)) 886 explicit __deferred_assoc_state(_Fp&& __f); 893 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) 894 : __func_(_VSTD::forward<_Fp>(__f)) 929 explicit __async_assoc_state(_Fp&& __f); 936 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) 937 : __func_(_VSTD::forward<_Fp>(__f)) 978 explicit __async_assoc_state(_Fp&& __f); [all …]
|
D | deque | 192 copy(_RAIter __f, 200 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 207 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 214 copy_backward(_RAIter __f, 222 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 229 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 236 move(_RAIter __f, 244 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 251 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 258 move_backward(_RAIter __f, [all …]
|
D | list | 597 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT; 705 // Unlink nodes [__f, __l] 709 __list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l) 712 __f->__prev_->__next_ = __l->__next_; 713 __l->__next_->__prev_ = __f->__prev_; 756 __link_pointer __f = __end_.__next_; 758 __unlink_nodes(__f, __l->__prev_); 760 while (__f != __l) 762 __node_pointer __np = __f->__as_node(); 763 __f = __f->__next_; [all …]
|
D | ostream | 215 basic_ostream& operator<<(float __f); 216 basic_ostream& operator<<(double __f); 217 basic_ostream& operator<<(long double __f); 382 const _Fp& __f = use_facet<_Fp>(this->getloc()); 383 if (__f.put(*this, *this, this->fill(), __n).failed()) 409 const _Fp& __f = use_facet<_Fp>(this->getloc()); 410 if (__f.put(*this, *this, this->fill(), 438 const _Fp& __f = use_facet<_Fp>(this->getloc()); 439 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 465 const _Fp& __f = use_facet<_Fp>(this->getloc()); [all …]
|
/external/libcxx/include/ |
D | __functional_03 | 108 explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 109 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 193 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 194 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 195 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 279 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 280 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) 281 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 365 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 366 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a) [all …]
|
D | __functional_base_03 | 75 __invoke(_Fn __f, _T1& __t1) { 76 return (__t1.*__f)(); 82 __invoke(_Fn __f, _T1& __t1, _A0& __a0) { 83 return (__t1.*__f)(__a0); 89 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) { 90 return (__t1.*__f)(__a0, __a1); 96 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) { 97 return (__t1.*__f)(__a0, __a1, __a2); 103 __invoke(_Fn __f, _T1& __t1) { 104 return ((*__t1).*__f)(); [all …]
|
D | functional | 1090 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) 1091 : __f_(__f) {} 1099 ptr_fun(_Result (*__f)(_Arg)) 1100 {return pointer_to_unary_function<_Arg,_Result>(__f);} 1108 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) 1109 : __f_(__f) {} 1117 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) 1118 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} 1147 mem_fun(_Sp (_Tp::*__f)()) 1148 {return mem_fun_t<_Sp,_Tp>(__f);} [all …]
|
D | deque | 191 copy(_RAIter __f, 199 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 206 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 213 copy_backward(_RAIter __f, 221 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 228 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 235 move(_RAIter __f, 243 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 250 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 257 move_backward(_RAIter __f, [all …]
|
D | future | 865 explicit __deferred_assoc_state(_Fp&& __f); 875 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) 876 : __func_(_VSTD::forward<_Fp>(__f)) 912 explicit __deferred_assoc_state(_Fp&& __f); 922 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) 923 : __func_(_VSTD::forward<_Fp>(__f)) 961 explicit __async_assoc_state(_Fp&& __f); 971 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) 972 : __func_(_VSTD::forward<_Fp>(__f)) 1016 explicit __async_assoc_state(_Fp&& __f); [all …]
|
D | list | 595 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT; 703 // Unlink nodes [__f, __l] 707 __list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l) 710 __f->__prev_->__next_ = __l->__next_; 711 __l->__next_->__prev_ = __f->__prev_; 754 __link_pointer __f = __end_.__next_; 756 __unlink_nodes(__f, __l->__prev_); 758 while (__f != __l) 760 __node_pointer __np = __f->__as_node(); 761 __f = __f->__next_; [all …]
|
D | ostream | 216 basic_ostream& operator<<(float __f); 217 basic_ostream& operator<<(double __f); 218 basic_ostream& operator<<(long double __f); 379 const _Fp& __f = use_facet<_Fp>(this->getloc()); 380 if (__f.put(*this, *this, this->fill(), __n).failed()) 406 const _Fp& __f = use_facet<_Fp>(this->getloc()); 407 if (__f.put(*this, *this, this->fill(), 435 const _Fp& __f = use_facet<_Fp>(this->getloc()); 436 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 462 const _Fp& __f = use_facet<_Fp>(this->getloc()); [all …]
|
D | forward_list | 665 forward_list(_InputIterator __f, _InputIterator __l, 670 forward_list(_InputIterator __f, _InputIterator __l, 711 assign(_InputIterator __f, _InputIterator __l); 792 insert_after(const_iterator __p, _InputIterator __f, _InputIterator __l); 795 iterator erase_after(const_iterator __f, const_iterator __l); 819 const_iterator __f, const_iterator __l); 824 const_iterator __f, const_iterator __l); 862 __sort(__node_pointer __f, difference_type __sz, _Compare& __comp); 947 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l, 952 insert_after(cbefore_begin(), __f, __l); [all …]
|
/external/llvm-project/libcxx/include/experimental/ |
D | functional | 115 default_searcher(_ForwardIterator __f, _ForwardIterator __l, 117 : __first_(__f), __last_(__l), __pred_(__p) {} 122 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const 124 return _VSTD::__search(__f, __l, __first_, __last_, __pred_, 138 make_default_searcher( _ForwardIterator __f, _ForwardIterator __l, _BinaryPredicate __p = _BinaryPr… 140 return default_searcher<_ForwardIterator, _BinaryPredicate>(__f, __l, __p); 222 boyer_moore_searcher(_RandomAccessIterator1 __f, _RandomAccessIterator1 __l, 224 : __first_(__f), __last_(__l), __pred_(__pred), 230 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i ) 231 __skip_->insert(*__f, __i); [all …]
|
/external/libcxx/include/experimental/ |
D | functional | 117 default_searcher(_ForwardIterator __f, _ForwardIterator __l, 119 : __first_(__f), __last_(__l), __pred_(__p) {} 124 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const 126 return _VSTD::__search(__f, __l, __first_, __last_, __pred_, 140 make_default_searcher( _ForwardIterator __f, _ForwardIterator __l, _BinaryPredicate __p = _BinaryPr… 142 return default_searcher<_ForwardIterator, _BinaryPredicate>(__f, __l, __p); 225 boyer_moore_searcher(_RandomAccessIterator1 __f, _RandomAccessIterator1 __l, 227 : __first_(__f), __last_(__l), __pred_(__pred), 233 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i ) 234 __skip_->insert(*__f, __i); [all …]
|
/external/llvm-project/pstl/include/pstl/internal/ |
D | parallel_impl.h | 33 __parallel_find(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f, _Compare __co… in __parallel_find() argument 41 [__comp, __f, __first, &__extremum](_Index __i, _Index __j) { in __parallel_find() 46 _Index __res = __f(__i, __j); in __parallel_find() 68 __parallel_or(_ExecutionPolicy&& __exec, _Index __first, _Index __last, _Brick __f) in __parallel_or() argument 72 [__f, &__found](_Index __i, _Index __j) { in __parallel_or() 73 if (!__found.load(std::memory_order_relaxed) && __f(__i, __j)) in __parallel_or()
|
D | utils.h | 25 __except_handler(_Fp __f) in __except_handler() argument 29 return __f(); in __except_handler() 43 __invoke_if(std::true_type, _Fp __f) in __invoke_if() argument 45 __f(); in __invoke_if() 55 __invoke_if_not(std::false_type, _Fp __f) in __invoke_if_not() argument 57 __f(); in __invoke_if_not()
|
/external/libcxx/include/support/win32/ |
D | locale_win32.h | 177 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm ) argument 181 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument 182 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 183 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 184 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
|
/external/clang/lib/Headers/ |
D | ia32intrin.h | 39 __writeeflags(unsigned long long __f) in __writeeflags() argument 41 __builtin_ia32_writeeflags_u64(__f); in __writeeflags() 52 __writeeflags(unsigned int __f) in __writeeflags() argument 54 __builtin_ia32_writeeflags_u32(__f); in __writeeflags()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-reserved-identifier/system/ |
D | system-header.h | 3 void __f() {} in __f() function 14 reference_wrapper(type &__f) in reference_wrapper() argument 15 : __f_(&__f) {} in reference_wrapper()
|
/external/llvm-project/libcxx/include/support/win32/ |
D | locale_win32.h | 246 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument 247 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 248 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 249 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-reserved-identifier-invert.cpp | 11 void __f() {} in __f() function 35 reference_wrapper(type &__f) in reference_wrapper() argument 36 : __f_(&__f) {} in reference_wrapper()
|
/external/llvm/test/CodeGen/X86/ |
D | movmsk.ll | 21 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0 22 store double %d1, double* %__f.i, align 8 45 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0 46 store double %add, double* %__f.i, align 8 67 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0 68 store float %f1, float* %__f.i, align 4 90 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0 91 store float %add, float* %__f.i, align 4
|