Searched refs:__arg (Results 1 – 7 of 7) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _stdexcept.h | 50 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
|
D | concept_checks.h | 61 #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.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()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | typeinfo | 104 bool before(const type_info& __arg) const _NOEXCEPT 106 {return __type_name < __arg.__type_name;} 108 {if (!((__type_name & __arg.__type_name) & _LIBCPP_NONUNIQUE_RTTI_BIT)) 109 return __type_name < __arg.__type_name; 110 return __compare_nonunique_names(__arg) < 0;} 127 bool operator==(const type_info& __arg) const _NOEXCEPT 129 {return __type_name == __arg.__type_name;} 131 {if (__type_name == __arg.__type_name) return true; 132 if (!((__type_name & __arg.__type_name) & _LIBCPP_NONUNIQUE_RTTI_BIT)) 134 return __compare_nonunique_names(__arg) == 0;} [all …]
|
D | future | 611 void set_value(_Arg&& __arg); 613 void set_value(_Arg& __arg); 618 void set_value_at_thread_exit(_Arg&& __arg); 620 void set_value_at_thread_exit(_Arg& __arg); 640 __assoc_state<_Rp>::set_value(_Arg&& __arg) 642 __assoc_state<_Rp>::set_value(_Arg& __arg) 650 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg)); 660 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg&& __arg) 662 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg& __arg) 670 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg)); [all …]
|
D | functional | 1323 virtual _Rp operator()(_ArgTypes&& ... __arg); 1368 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::operator()(_ArgTypes&& ... __arg) 1370 return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...); 1750 function<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __arg) const 1756 return (*__f_)(_VSTD::forward<_ArgTypes>(__arg)...);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
D | optional | 127 _LIBCPP_INLINE_VISIBILITY explicit bad_optional_access(const string& __arg) 128 : logic_error(__arg) {} 129 _LIBCPP_INLINE_VISIBILITY explicit bad_optional_access(const char* __arg) 130 : logic_error(__arg) {}
|