Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/Inputs/replace-auto-ptr/
H A 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
/llvm-project/clang/test/Parser/
H A Dobjc-cxx-keyword-identifiers.mm4 …int throw; // expected-error {{expected member name or ';' after declaration specifiers; 'throw' i… field
27 @property (readwrite, nonatomic) int a, b, throw; // expected-error {{expected member name or ';' a… property
H A Dcxx-keyword-identifiers.cpp4 int foo1(int case, int throw, int y) { // expected-error {{invalid parameter name: 'case' is a keyw… in foo1()
/llvm-project/libcxx/test/support/
H A Dexperimental_any_helpers.h
H A Dany_helpers.h290 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function
330 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
/llvm-project/clang/test/CodeGenCXX/
H A Dmangle-exception-spec.cpp11 void c(int() throw()) {} in c()
/llvm-project/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() function
/llvm-project/lldb/test/API/lang/c/cpp_keyword_identifiers/
H A Dmain.c56 int throw = 1; in main() local
/llvm-project/clang/test/Analysis/
H A 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
/llvm-project/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp89 #define throw macro
/llvm-project/clang/test/CodeGen/
H A Dbuiltins-wasm.c47 void throw(void *obj) { in throw() function