Home
last modified time | relevance | path

Searched refs:throw (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd/contrib/kyua/utils/config/
H A Dtree.ipp75 /// \throw invalid_key_error If the provided key has an invalid format.
76 /// \throw unknown_key_error If the provided key is unknown.
88 throw unknown_key_error(key);
90 throw unknown_key_error(key);
102 /// \throw invalid_key_error If the provided key has an invalid format.
103 /// \throw unknown_key_error If the provided key is unknown.
116 throw unknown_key_error(key);
118 throw unknown_key_error(key);
129 /// \throw invalid_key_error If the provided key has an invalid format.
130 /// \throw invalid_key_value If the value mismatches the node type.
[all …]
H A Dnodes.ipp207 /// \throw value_error If the value is invalid, according to validate().
222 /// \throw value_error If the value is not valid.
235 /// \throw value_error If the value is invalid.
244 throw config::value_error(F("Failed to convert string value '%s' to "
323 /// \throw value_error If the value is invalid, according to validate().
337 /// \throw value_error If the value is invalid.
380 /// \throw value_error If the value in state(value_index) cannot be
402 /// \throw value_error If the value is not valid.
/freebsd/contrib/kyua/utils/
H A Dauto_array.ipp60 auto_array< T >::auto_array(T* ptr) throw() :
71 auto_array< T >::auto_array(auto_array< T >& ptr) throw() :
84 auto_array< T >::auto_array(detail::auto_array_ref< T > ref) throw() :
92 auto_array< T >::~auto_array(void) throw()
104 auto_array< T >::get(void) throw()
115 auto_array< T >::get(void) const throw()
126 auto_array< T >::release(void) throw()
142 auto_array< T >::reset(T* ptr) throw()
156 auto_array< T >::operator=(auto_array< T >& ptr) throw()
169 auto_array< T >::operator=(detail::auto_array_ref< T > ref) throw()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__exception/
H A Dexception_ptr.h33 _LIBCPP_OVERRIDABLE_FUNC_VIS void* __cxa_allocate_exception(size_t) throw();
34 _LIBCPP_OVERRIDABLE_FUNC_VIS void __cxa_free_exception(void*) throw();
41 void(__thiscall*)(void*)) throw();
44 void* (*)(void*)) throw();
46 void (*)(void*)) throw();
122 throw __e; in make_exception_ptr()
H A Dnested_exception.h57 throw __nested<_Up>(std::forward<_Tp>(__t));
63 …_LIBCPP_NORETURN static inline _LIBCPP_HIDE_FROM_ABI void __do_throw(_Tp&& __t) { throw std::forwa…
/freebsd/contrib/llvm-project/libcxx/src/include/
H A Dsso_allocator.h50 _LIBCPP_HIDE_FROM_ABI __sso_allocator() throw() : __allocated_(false) {} in __sso_allocator()
51 _LIBCPP_HIDE_FROM_ABI __sso_allocator(const __sso_allocator&) throw() : __allocated_(false) {} in __sso_allocator()
53 _LIBCPP_HIDE_FROM_ABI __sso_allocator(const __sso_allocator<_Up, _Np>&) throw() : __allocated_(false) {}
72 _LIBCPP_HIDE_FROM_ABI size_type max_size() const throw() { return size_type(~0) / sizeof(_Tp); } in max_size()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstdexcept216 throw logic_error(__msg);
224 throw domain_error(__msg);
232 throw invalid_argument(__msg);
240 throw length_error(__msg);
248 throw out_of_range(__msg);
256 throw range_error(__msg);
264 throw overflow_error(__msg);
272 throw underflow_error(__msg);
H A Distream367 throw;
458 throw;
509 throw;
584 throw;
637 throw;
668 throw;
709 throw;
802 throw;
852 throw;
879 throw;
[all …]
H A Dmemory387 explicit auto_ptr(X* p =0) throw();
388 auto_ptr(auto_ptr&) throw();
389 template<class Y> auto_ptr(auto_ptr<Y>&) throw();
390 auto_ptr& operator=(auto_ptr&) throw();
391 template<class Y> auto_ptr& operator=(auto_ptr<Y>&) throw();
392 auto_ptr& operator=(auto_ptr_ref<X> r) throw();
393 ~auto_ptr() throw();
395 typename add_lvalue_reference<X>::type operator*() const throw();
396 X* operator->() const throw();
397 X* get() const throw();
[all …]
/freebsd/contrib/bsnmp/tests/
H A Dconstbuf.h70 throw "unaligned hex digit"; in count_hex()
124 throw "address check failed"; in handle_check()
138 throw "cannot go backwards"; in count_goto()
172 throw "bad character"; in count_bin()
209 throw "bad character"; in handle_bin()
/freebsd/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_proc_etmv3_impl.h153throw ocsdError(OCSD_ERR_SEV_ERROR,OCSD_ERR_BAD_PACKET_SEQ,m_packet_index,m_chanIDCopy,pszErrMsg); in throwMalformedPacketErr()
158throw ocsdError(OCSD_ERR_SEV_ERROR,OCSD_ERR_INVALID_PCKT_HDR,m_packet_index,m_chanIDCopy,pszErrMsg… in throwPacketHeaderErr()
163throw ocsdError(OCSD_ERR_SEV_ERROR,OCSD_ERR_HW_CFG_UNSUPP,m_packet_index,m_chanIDCopy,pszErrMsg); in throwUnsupportedErr()
/freebsd/stand/forth/
H A Dsupport.4th172 len allocate if ENOMEM throw then
352 : free-memory free if EFREE throw then ;
445 resize if ENOMEM throw then
447 r@ allocate if ENOMEM throw then
475 read_buffer_size allocate if ENOMEM throw then
479 dup -1 = if EREAD throw then
592 len allocate if ENOMEM throw then
610 end_of_line? if ESYNTAX throw then
616 end_of_line? if ESYNTAX throw then
619 end_of_line? if ESYNTAX throw then
[all …]
/freebsd/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_msvc.ipp19 _LIBCPP_CRT_FUNC terminate_handler __cdecl set_terminate(terminate_handler _NewTerminateHandler) throw();
23 unexpected_handler __cdecl set_unexpected(unexpected_handler _NewUnexpectedHandler) throw();
55 // handler should not throw exception
/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h70 throw; in __uninitialized_copy()
100 throw; in __uninitialized_copy_n()
130 throw; in __uninitialized_fill()
158 throw; in __uninitialized_fill_n()
188 throw; in __uninitialized_default_construct()
214 throw; in __uninitialized_default_construct_n()
241 throw; in __uninitialized_value_construct()
267 throw; in __uninitialized_value_construct_n()
304 throw; in __uninitialized_move()
341 throw; in __uninitialized_move_n()
/freebsd/contrib/kyua/utils/text/
H A Doperations.ipp70 /// \throw std::value_error If the input string does not represent a valid
78 throw text::value_error("Empty string");
80 throw text::value_error("Invalid value");
86 throw text::value_error("Invalid value");
/freebsd/contrib/opencsd/decoder/include/opencsd/ptm/
H A Dtrc_pkt_proc_ptm.h197throw ocsdError(OCSD_ERR_SEV_ERROR,OCSD_ERR_BAD_PACKET_SEQ,m_curr_pkt_index,m_chanIDCopy,pszErrMsg… in throwMalformedPacketErr()
202throw ocsdError(OCSD_ERR_SEV_ERROR,OCSD_ERR_INVALID_PCKT_HDR,m_curr_pkt_index,m_chanIDCopy,pszErrM… in throwPacketHeaderErr()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dexception.h77 throw nonexistent_local_time(__time, __info); in __throw_nonexistent_local_time()
121 throw ambiguous_local_time(__time, __info); in __throw_ambiguous_local_time()
/freebsd/contrib/one-true-awk/testdir/
H A DNOTES10 never throw away a test
/freebsd/crypto/openssh/openbsd-compat/
H A Dgetopt.h38 # define __THROW throw()
/freebsd/contrib/googletest/googletest/test/
H A DBUILD.bazel72 "googletest-throw-on-failure-test_.cc",
308 name = "googletest-throw-on-failure-test_",
310 srcs = ["googletest-throw-on-failure-test_.cc"],
315 name = "googletest-throw-on-failure-test",
317 srcs = ["googletest-throw-on-failure-test.py"],
318 data = [":googletest-throw-on-failure-test_"],
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_error.h40 throw format_error(__s); in __throw_format_error()
/freebsd/share/misc/
H A Doperator17 = += -= *= /= %= <<= >>= &= ^= |= throw right to left
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Derror.h196 throw; in report()
216 throw; in report()
H A Dformat_string.h66 throw; in format_string()
/freebsd/contrib/libcxxrt/
H A Dcxxabi.h45 #define _LIBCXXRT_NOEXCEPT throw()

12345