Home
last modified time | relevance | path

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

/external/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()
/external/libcxx/include/
Dtypeinfo104 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 …]
Dfuture609 void set_value(_Arg&& __arg);
611 void set_value(_Arg& __arg);
616 void set_value_at_thread_exit(_Arg&& __arg);
618 void set_value_at_thread_exit(_Arg& __arg);
638 __assoc_state<_Rp>::set_value(_Arg&& __arg)
640 __assoc_state<_Rp>::set_value(_Arg& __arg)
648 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg));
658 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg&& __arg)
660 __assoc_state<_Rp>::set_value_at_thread_exit(_Arg& __arg)
668 ::new(&__value_) _Rp(_VSTD::forward<_Arg>(__arg));
[all …]
Dfunctional1323 virtual _Rp operator()(_ArgTypes&& ... __arg);
1368 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::operator()(_ArgTypes&& ... __arg)
1370 return __invoke(__f_.first(), _VSTD::forward<_ArgTypes>(__arg)...);
1749 function<_Rp(_ArgTypes...)>::operator()(_ArgTypes... __arg) const
1755 return (*__f_)(_VSTD::forward<_ArgTypes>(__arg)...);
/external/clang/test/CodeGenCXX/
Dtypeinfo6 bool operator==(const type_info& __arg) const {
7 return __name == __arg.__name;
10 bool operator!=(const type_info& __arg) const {
11 return !operator==(__arg);
/external/libcxx/include/experimental/
Doptional127 _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) {}
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dlinux_syscall_support.h1714 register void * __arg __asm__ ("r9") = arg; in LSS_NAME()
1769 "r" (__arg), "r" (__ptidptr), "r" (__newtls), in LSS_NAME()
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dlinux_syscall_support.h1798 register void * __arg __asm__ ("r9") = arg; in LSS_NAME()
1853 "r" (__arg), "r" (__ptidptr), "r" (__newtls), in LSS_NAME()
/external/valgrind/main/perf/
Dtest_input_for_tinycc.c729 extern int on_exit (void (*__func) (int __status, void *__arg), void *__arg)