Home
last modified time | relevance | path

Searched defs:throw (Results 1 – 25 of 43) sorted by relevance

12

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-replace-auto-ptr/
Dmemory.h15 explicit auto_ptr(X *p = 0) throw() {} in throw() function
16 auto_ptr(auto_ptr &) throw() {} in throw() function
18 auto_ptr &operator=(auto_ptr &) throw() { return *this; } in throw() function
19 template <class Y> auto_ptr &operator=(auto_ptr<Y> &) throw() { in throw() function
22 auto_ptr &operator=(auto_ptr_ref<X> r) throw() { return *this; } in throw() function
23 ~auto_ptr() throw() {} in throw() function
24 auto_ptr(auto_ptr_ref<X> r) throw() : x_(r.y_) {} in throw() function
25 template <class Y> operator auto_ptr_ref<Y>() throw() { in throw() function
30 template <class Y> operator auto_ptr<Y>() throw() { return auto_ptr<Y>(x_); } in throw() function
/external/antlr/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
DException.pm21 sub throw : Test(1) { method in Test::ANTLR::Runtime::Exception
/external/llvm-project/clang/test/Parser/
Dobjc-cxx-keyword-identifiers.mm6 …int throw; // expected-error {{expected member name or ';' after declaration specifiers; 'throw' i… field
29 @property (readwrite, nonatomic) int a, b, throw; // expected-error {{expected member name or ';' a… property
Dcxx-keyword-identifiers.cpp4 int foo1(int case, int throw, int y) { // expected-error {{invalid parameter name: 'case' is a keyw… in foo1()
/external/llvm-project/libcxx/test/support/
Dexperimental_any_helpers.h91 small_type(small_type const & other) throw() { in throw() function
98 small_type(small_type& other) throw() { in throw() function
105 small_type(small_type && other) throw() { in throw() function
244 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
275 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
/external/libcxx/test/support/
Dexperimental_any_helpers.h98 small_type(small_type const & other) throw() { in throw() function
105 small_type(small_type& other) throw() { in throw() function
112 small_type(small_type && other) throw() { in throw() function
251 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
282 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
Dany_helpers.h293 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
333 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
/external/toybox/toys/other/
Dshred.c47 int fd = open(*try, O_RDWR), iter = 0, throw; local
/external/llvm-project/clang/test/Analysis/diagnostics/Inputs/include/
Dreport-issues-within-main-file.h6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() function
/external/llvm-project/clang/test/CodeGenCXX/
Dmangle-exception-spec.cpp11 void c(int() throw()) {} in c()
/external/clang/test/Analysis/diagnostics/Inputs/include/
Dreport-issues-within-main-file.h6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() function
/external/lzma/CPP/Common/
DMyCom.h18 CMyComPtr(T* p) throw() { if ((_p = p) != NULL) p->AddRef(); } in throw() function
19 CMyComPtr(const CMyComPtr<T>& lp) throw() { if ((_p = lp._p) != NULL) _p->AddRef(); } in throw() function
/external/catch2/projects/XCode/OCTest/OCTest/
DCatchOCTestCase.mm59 throw std::domain_error( "std C++ exception" ); category
/external/antlr/runtime/JavaScript/third/
Dantcontrib.properties9 throw=net.sf.antcontrib.logic.Throw key
/external/lzma/CPP/Windows/
DPropVariant.h58 ~CPropVariant() throw() { Clear(); } in throw() function
/external/toybox/toys/posix/
Dod.c54 int throw = 0, pad = 0; in od_out_t() local
/external/python/cpython3/Lib/test/
Dtest_collections.py770 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Awaitable.MinimalCoro
820 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Coroutine.MinimalCoro
848 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Coroutine.CoroLike
1136 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.NonGen1
1147 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.NonGen3
1161 def throw(self, typ, val=None, tb=None): pass member in TestOneTrickPonyABCs.test_Generator.Gen
1166 def throw(self, typ, val=None, tb=None): member in TestOneTrickPonyABCs.test_Generator.MinimalGen
1192 def throw(self, *args): raise ValueError member in TestOneTrickPonyABCs.test_Generator.FailOnClose
1198 def throw(self, *args): pass member in TestOneTrickPonyABCs.test_Generator.IgnoreGeneratorExit
/external/llvm-project/lldb/test/API/lang/c/cpp_keyword_identifiers/
Dmain.c56 int throw = 1; in main() local
/external/python/cpython3/Lib/asyncio/
Dcoroutines.py64 def throw(self, type, value=None, traceback=None): member in CoroWrapper
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_pep492.py22 def throw(self, typ, val=None, tb=None): member in FakeCoro
/external/protobuf/php/tests/proto/
Dtest_reserved_message_lower.proto61 message throw {} message
Dtest_reserved_enum_value_lower.proto62 throw = 56; enumerator
/external/toybox/lib/
Dlinestack.c12 void linestack_addstack(struct linestack **lls, struct linestack *throw, in linestack_addstack()
/external/clang/test/Analysis/
Dretain-release.mm429 Holder<X>::Holder() throw() function
434 X* Holder<X>::get() const throw() { function
440 void Holder<X>::reset(X* p) throw() { function
/external/llvm-project/clang/test/Analysis/
Dretain-release.mm429 Holder<X>::Holder() throw() function
434 X* Holder<X>::get() const throw() { function
440 void Holder<X>::reset(X* p) throw() { function

12