Home
last modified time | relevance | path

Searched refs:__arg (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stdexcept.h50 domain_error(const string& __arg) : logic_error(__arg) {} in domain_error() argument
58 invalid_argument(const string& __arg) : logic_error(__arg) {} in invalid_argument() argument
66 length_error(const string& __arg) : logic_error(__arg) {} in length_error() argument
74 out_of_range(const string& __arg) : logic_error(__arg) {} in out_of_range() argument
82 range_error(const string& __arg) : runtime_error(__arg) {} in range_error() argument
90 overflow_error(const string& __arg) : runtime_error(__arg) {} in overflow_error() argument
98 underflow_error(const string& __arg) : runtime_error(__arg) {} in underflow_error() argument
Dconcept_checks.h61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) argument
62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ argument
63 static int __##__func##__ret##__arg##_unary_function_check
123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ argument
125 __ret (*__x)( __func&, const __arg& ) = \
127 __func, __ret, __arg>::__unary_function_requirement_violation; \
154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) argument
195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ argument
196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \
197 const __arg& ); \
[all …]
D_iomanip.h38 _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()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dtypeinfo89 bool before(const type_info& __arg) const _NOEXCEPT
90 {return __type_name < __arg.__type_name;}
96 bool operator==(const type_info& __arg) const _NOEXCEPT
97 {return __type_name == __arg.__type_name;}
99 bool operator!=(const type_info& __arg) const _NOEXCEPT
100 {return !operator==(__arg);}
Dfuture543 void set_value(_Arg&& __arg);
545 void set_value(_Arg& __arg);
550 void set_value_at_thread_exit(_Arg&& __arg);
552 void set_value_at_thread_exit(_Arg& __arg);
572 __assoc_state<_Rp>::set_value(_Arg&& __arg)
574 __assoc_state<_Rp>::set_value(_Arg& __arg)
582 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg));
592 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg&& __arg)
594 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg& __arg)
602 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg));
[all …]
Dfunctional1013 virtual _Rp operator()(_ArgTypes&& ... __arg);
1058 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::operator()(_ArgTypes&& ... __arg)
1060 return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...);
1430 function<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __arg) const
1436 return (*__f_)(_VSTD::forward<_ArgTypes>(__arg)...);