Home
last modified time | relevance | path

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

1234

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dcxx11-stdexcept.cc43 logic_error::logic_error(const string& __arg) in logic_error() argument
44 : _M_msg(__arg) { } in logic_error()
46 runtime_error::runtime_error(const string& __arg) in runtime_error() argument
47 : _M_msg(__arg) { } in runtime_error()
52 domain_error::domain_error(const string& __arg) in domain_error() argument
53 : logic_error(__arg) { } in domain_error()
55 invalid_argument::invalid_argument(const string& __arg) in invalid_argument() argument
56 : logic_error(__arg) { } in invalid_argument()
58 length_error::length_error(const string& __arg) in length_error() argument
59 : logic_error(__arg) { } in length_error()
[all …]
H A Dcow-stdexcept.cc106 logic_error::logic_error(const char* __arg) in logic_error() argument
107 : exception(), _M_msg(__arg) { } in logic_error()
109 domain_error::domain_error(const char* __arg) in domain_error() argument
110 : logic_error(__arg) { } in domain_error()
112 invalid_argument::invalid_argument(const char* __arg) in invalid_argument() argument
113 : logic_error(__arg) { } in invalid_argument()
115 length_error::length_error(const char* __arg) in length_error() argument
116 : logic_error(__arg) { } in length_error()
118 out_of_range::out_of_range(const char* __arg) in out_of_range() argument
119 : logic_error(__arg) { } in out_of_range()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dcxx11-stdexcept.cc43 logic_error::logic_error(const string& __arg) in logic_error() argument
44 : _M_msg(__arg) { } in logic_error()
46 runtime_error::runtime_error(const string& __arg) in runtime_error() argument
47 : _M_msg(__arg) { } in runtime_error()
52 domain_error::domain_error(const string& __arg) in domain_error() argument
53 : logic_error(__arg) { } in domain_error()
55 invalid_argument::invalid_argument(const string& __arg) in invalid_argument() argument
56 : logic_error(__arg) { } in invalid_argument()
58 length_error::length_error(const string& __arg) in length_error() argument
59 : logic_error(__arg) { } in length_error()
[all …]
H A Dcow-stdexcept.cc86 logic_error::logic_error(const char* __arg) in logic_error() argument
87 : exception(), _M_msg(__arg) { } in logic_error()
89 domain_error::domain_error(const char* __arg) in domain_error() argument
90 : logic_error(__arg) { } in domain_error()
92 invalid_argument::invalid_argument(const char* __arg) in invalid_argument() argument
93 : logic_error(__arg) { } in invalid_argument()
95 length_error::length_error(const char* __arg) in length_error() argument
96 : logic_error(__arg) { } in length_error()
98 out_of_range::out_of_range(const char* __arg) in out_of_range() argument
99 : logic_error(__arg) { } in out_of_range()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dstdexcept.cc38 logic_error::logic_error(const string& __arg) in logic_error() argument
39 : exception(), _M_msg(__arg) { } in logic_error()
47 domain_error::domain_error(const string& __arg) in domain_error() argument
48 : logic_error(__arg) { } in domain_error()
52 invalid_argument::invalid_argument(const string& __arg) in invalid_argument() argument
53 : logic_error(__arg) { } in invalid_argument()
57 length_error::length_error(const string& __arg) in length_error() argument
58 : logic_error(__arg) { } in length_error()
62 out_of_range::out_of_range(const string& __arg) in out_of_range() argument
63 : logic_error(__arg) { } in out_of_range()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dstdexcept.cc38 logic_error::logic_error(const string& __arg) in logic_error() argument
39 : exception(), _M_msg(__arg) { } in logic_error()
47 domain_error::domain_error(const string& __arg) in domain_error() argument
48 : logic_error(__arg) { } in domain_error()
52 invalid_argument::invalid_argument(const string& __arg) in invalid_argument() argument
53 : logic_error(__arg) { } in invalid_argument()
57 length_error::length_error(const string& __arg) in length_error() argument
58 : logic_error(__arg) { } in length_error()
62 out_of_range::out_of_range(const string& __arg) in out_of_range() argument
63 : logic_error(__arg) { } in out_of_range()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dcast.h68 __static_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
70 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
74 __dynamic_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
76 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
80 __const_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
82 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
86 __reinterpret_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
88 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
96 __static_pointer_cast(_FromType* __arg) in _GLIBCXX_VISIBILITY()
98 type>(__arg)); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dpointer.h82 set(element_type* __arg) in _GLIBCXX_VISIBILITY()
83 { _M_value = __arg; } in _GLIBCXX_VISIBILITY()
128 set(_Tp* __arg) in _GLIBCXX_VISIBILITY()
130 if (!__arg) in _GLIBCXX_VISIBILITY()
133 _M_diff = reinterpret_cast<uintptr_t>(__arg) in _GLIBCXX_VISIBILITY()
174 set(const _Tp* __arg) in _GLIBCXX_VISIBILITY()
176 if (!__arg) in _GLIBCXX_VISIBILITY()
179 _M_diff = reinterpret_cast<uintptr_t>(__arg) in _GLIBCXX_VISIBILITY()
289 _Pointer_adapter(element_type* __arg = 0) in _GLIBCXX_VISIBILITY()
290 { _Storage_policy::set(__arg); } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dcast.h68 __static_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
70 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
74 __dynamic_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
76 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
80 __const_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
82 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
86 __reinterpret_pointer_cast(const _FromType& __arg) in _GLIBCXX_VISIBILITY()
88 type>(__arg.get())); } in _GLIBCXX_VISIBILITY()
96 __static_pointer_cast(_FromType* __arg) in _GLIBCXX_VISIBILITY()
98 type>(__arg)); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dpointer.h82 set(element_type* __arg) in _GLIBCXX_VISIBILITY()
83 { _M_value = __arg; } in _GLIBCXX_VISIBILITY()
128 set(_Tp* __arg) in _GLIBCXX_VISIBILITY()
130 if (!__arg) in _GLIBCXX_VISIBILITY()
133 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) in _GLIBCXX_VISIBILITY()
180 set(const _Tp* __arg) in _GLIBCXX_VISIBILITY()
182 if (!__arg) in _GLIBCXX_VISIBILITY()
185 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) in _GLIBCXX_VISIBILITY()
301 _Pointer_adapter(element_type* __arg = 0) in _GLIBCXX_VISIBILITY()
302 { _Storage_policy::set(__arg); } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dany138 _Arg __arg;
139 __arg._M_any = this;
140 __other._M_manager(_Op_clone, &__other, &__arg);
155 _Arg __arg;
156 __arg._M_any = this;
157 __other._M_manager(_Op_xfer, &__other, &__arg);
211 _Arg __arg;
212 __arg._M_any = this;
213 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
251 _Arg __arg;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dany138 _Arg __arg;
139 __arg._M_any = this;
140 __other._M_manager(_Op_clone, &__other, &__arg);
155 _Arg __arg;
156 __arg._M_any = this;
157 __other._M_manager(_Op_xfer, &__other, &__arg);
211 _Arg __arg;
212 __arg._M_any = this;
213 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
251 _Arg __arg;
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dany162 _Arg __arg;
163 __arg._M_any = this;
164 __other._M_manager(_Op_clone, &__other, &__arg);
179 _Arg __arg;
180 __arg._M_any = this;
181 __other._M_manager(_Op_xfer, &__other, &__arg);
246 _Arg __arg;
247 __arg._M_any = this;
248 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
307 _Arg __arg;
[all …]
H A Dstdexcept120 logic_error(const string& __arg) _GLIBCXX_TXN_SAFE;
156 explicit domain_error(const string& __arg) _GLIBCXX_TXN_SAFE;
171 explicit invalid_argument(const string& __arg) _GLIBCXX_TXN_SAFE;
187 explicit length_error(const string& __arg) _GLIBCXX_TXN_SAFE;
203 explicit out_of_range(const string& __arg) _GLIBCXX_TXN_SAFE;
226 runtime_error(const string& __arg) _GLIBCXX_TXN_SAFE;
261 explicit range_error(const string& __arg) _GLIBCXX_TXN_SAFE;
276 explicit overflow_error(const string& __arg) _GLIBCXX_TXN_SAFE;
291 explicit underflow_error(const string& __arg) _GLIBCXX_TXN_SAFE;
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dany159 _Arg __arg;
160 __arg._M_any = this;
161 __other._M_manager(_Op_clone, &__other, &__arg);
176 _Arg __arg;
177 __arg._M_any = this;
178 __other._M_manager(_Op_xfer, &__other, &__arg);
243 _Arg __arg;
244 __arg._M_any = this;
245 __rhs._M_manager(_Op_xfer, &__rhs, &__arg);
304 _Arg __arg;
[all …]
/netbsd-src/sbin/ifconfig/
H A Daf_inetany.h34 #define IFADDR_PARAM(__arg) {.cmd = (__arg), .desc = #__arg} argument
35 #define BUFPARAM(__arg) {.buf = &(__arg), .buflen = sizeof(__arg)} argument
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Dtypeinfo106 bool before(const type_info& __arg) const _GLIBCXX_NOEXCEPT;
107 bool operator==(const type_info& __arg) const _GLIBCXX_NOEXCEPT;
110 /** Returns true if @c *this precedes @c __arg in the implementation's
115 bool before(const type_info& __arg) const _GLIBCXX_NOEXCEPT
116 { return (__name[0] == '*' && __arg.__name[0] == '*')
117 ? __name < __arg.__name
118 : __builtin_strcmp (__name, __arg.__name) < 0; }
120 bool operator==(const type_info& __arg) const _GLIBCXX_NOEXCEPT
122 return ((__name == __arg.__name)
124 __builtin_strcmp (__name, __arg.__name) == 0));
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Dtypeinfo106 /** Returns true if `*this` precedes `__arg` in the implementation's
108 bool before(const type_info& __arg) const _GLIBCXX_NOEXCEPT;
111 bool operator==(const type_info& __arg) const _GLIBCXX_NOEXCEPT;
114 bool operator!=(const type_info& __arg) const _GLIBCXX_NOEXCEPT
115 { return !operator==(__arg); }
171 type_info::before(const type_info& __arg) const _GLIBCXX_NOEXCEPT
177 if (__name[0] != '*' || __arg.__name[0] != '*')
178 return __builtin_strcmp (__name, __arg.__name) < 0;
187 return __name < __arg.__name;
193 type_info::operator==(const type_info& __arg) const _GLIBCXX_NOEXCEPT
[all …]
/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbLexer.h33 explicit syntax_error(const std::string & __arg) : std::runtime_error(__arg) {} in syntax_error() argument
42 explicit lexical_error(const std::string & __arg) : std::runtime_error(__arg) {} in lexical_error() argument
/netbsd-src/external/apache2/llvm/dist/libcxx/src/support/win32/
H A Dthread_win32.cpp182 void *__arg; member
191 void *__arg = __data->__arg; in __libcpp_beginthreadex_thunk() local
193 return static_cast<unsigned>(reinterpret_cast<uintptr_t>(__func(__arg))); in __libcpp_beginthreadex_thunk()
201 void *__arg) in __libcpp_thread_create() argument
205 __data->__arg = __arg; in __libcpp_thread_create()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dutils.h165 operator()(_Arg&& __arg) in operator()
167 return _M_pred(std::forward<_Arg>(__arg), _M_value); in operator()
182 operator()(_Arg&& __arg) const in operator()
184 return std::forward<_Arg>(__arg) == _M_value; in operator()
199 operator()(_Arg&& __arg) const in operator()
201 return !(std::forward<_Arg>(__arg) == _M_value); in operator()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dutils.h165 operator()(_Arg&& __arg) in operator()
167 return _M_pred(std::forward<_Arg>(__arg), _M_value); in operator()
182 operator()(_Arg&& __arg) const in operator()
184 return std::forward<_Arg>(__arg) == _M_value; in operator()
199 operator()(_Arg&& __arg) const in operator()
201 return !(std::forward<_Arg>(__arg) == _M_value); in operator()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dtypeinfo102 bool before(const type_info& __arg) const _NOEXCEPT {
103 return __compare(__arg) < 0;
109 bool operator==(const type_info& __arg) const _NOEXCEPT {
110 return __compare(__arg) == 0;
114 bool operator!=(const type_info& __arg) const _NOEXCEPT
115 { return !operator==(__arg); }
321 bool before(const type_info& __arg) const _NOEXCEPT
323 return __impl::__lt(__type_name, __arg.__type_name);
333 bool operator==(const type_info& __arg) const _NOEXCEPT
335 return __impl::__eq(__type_name, __arg.__type_name);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgomp/
H A Dopenacc.h101 int acc_on_device (int __arg) __GOACC_NOTHROW;
103 int acc_on_device (acc_device_t __arg) __GOACC_NOTHROW;
161 inline int acc_on_device (acc_device_t __arg) __GOACC_NOTHROW in acc_on_device() argument
163 return acc_on_device ((int) __arg); in acc_on_device()
/netbsd-src/external/gpl3/gcc.old/dist/libgomp/
H A Dopenacc.h101 int acc_on_device (int __arg) __GOACC_NOTHROW;
103 int acc_on_device (acc_device_t __arg) __GOACC_NOTHROW;
161 inline int acc_on_device (acc_device_t __arg) __GOACC_NOTHROW in acc_on_device() argument
163 return acc_on_device ((int) __arg); in acc_on_device()

1234