Searched refs:throw (Results 1 - 25 of 85) sorted by relevance

1234

/external/clang/test/PCH/
H A Dcxx-functions.h1 void foo() throw( int, short, char, float, double );
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dser.h7 return noexcept(throw 0);
/external/clang/test/SemaCXX/Inputs/
H A Dmalloc.h2 extern void *malloc (__SIZE_TYPE__ __size) throw () __attribute__ ((__malloc__)) ;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); }
34 virtual ~Exception() throw() {}
35 virtual const char* what() const throw() { return what_.c_str(); }
38 void SetMessage(const char* message) throw() {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
51 explicit IndexOutOfBoundException(const char* message) throw()
53 IndexOutOfBoundException(const char* message, int32_t index) throw() {
62 virtual ~IndexOutOfBoundException() throw() {}
67 IOException() throw() : Exception("I/O exception") {}
68 explicit IOException(const char* message) throw()
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); }
34 virtual ~Exception() throw() {}
35 virtual const char* what() const throw() { return what_.c_str(); }
38 void SetMessage(const char* message) throw() {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
51 explicit IndexOutOfBoundException(const char* message) throw()
53 IndexOutOfBoundException(const char* message, int32_t index) throw() {
62 virtual ~IndexOutOfBoundException() throw() {}
67 IOException() throw() : Exception("I/O exception") {}
68 explicit IOException(const char* message) throw()
[all...]
/external/lzma/CPP/Common/
H A DNewHandler.h13 operator delete(void *p) throw();
/external/oprofile/libutil++/
H A Dop_exception.h31 ~op_exception() throw() = 0;
33 char const * what() const throw();
42 * throw op_fatal_error("blah") when returning error code is not an option
56 ~op_runtime_error() throw();
H A Dcached_value.h30 throw op_fatal_error("cached value not set");
/external/clang/test/Coverage/
H A Dobjc-language-features.inc67 @throw x;
70 @throw;
/external/chromium_org/third_party/webrtc/base/
H A Dlinked_ptr.h43 explicit linked_ptr(X* p = 0) throw()
47 linked_ptr(const linked_ptr& r) throw()
60 template <class Y> linked_ptr(const linked_ptr<Y>& r) throw()
72 X& operator*() const throw() {return *itsPtr;}
73 X* operator->() const throw() {return itsPtr;}
74 X* get() const throw() {return itsPtr;}
75 bool unique() const throw() {return itsPrev ? itsPrev==this : true;}
82 void acquire(const linked_ptr& r) throw()
96 template <class Y> void acquire(const linked_ptr<Y>& r) throw()
H A Dscoped_autorelease_pool.h45 // Note: new is declared as "throw()" to get around a gcc warning about new
47 // never actually throw any exception.
48 void* operator new(size_t size) throw() { return NULL; }
/external/libcxx/include/
H A Dcxxabi.h44 extern void * __cxa_allocate_exception(size_t thrown_size) throw();
45 extern void __cxa_free_exception(void * thrown_exception) throw();
52 extern void * __cxa_get_exception_ptr(void * exceptionObject) throw();
53 extern void * __cxa_begin_catch(void * exceptionObject) throw();
56 extern bool __cxa_begin_cleanup(void * exceptionObject) throw();
172 extern void * __cxa_current_primary_exception() throw();
174 extern void __cxa_increment_exception_refcount(void* primary_exception) throw();
175 extern void __cxa_decrement_exception_refcount(void* primary_exception) throw();
178 extern bool __cxa_uncaught_exception() throw();
/external/libcxxabi/include/
H A Dcxxabi.h44 extern void * __cxa_allocate_exception(size_t thrown_size) throw();
45 extern void __cxa_free_exception(void * thrown_exception) throw();
52 extern void * __cxa_get_exception_ptr(void * exceptionObject) throw();
53 extern void * __cxa_begin_catch(void * exceptionObject) throw();
56 extern bool __cxa_begin_cleanup(void * exceptionObject) throw();
172 extern void * __cxa_current_primary_exception() throw();
174 extern void __cxa_increment_exception_refcount(void* primary_exception) throw();
175 extern void __cxa_decrement_exception_refcount(void* primary_exception) throw();
178 extern bool __cxa_uncaught_exception() throw();
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm21 sub throw : Test(1) { subroutine
24 $self->class->throw(message => 'test error message');
/external/oprofile/libabi/
H A Dabi.h24 ~abi_exception() throw() {}
32 int need(std::string const key) const throw (abi_exception);
/external/chromium_org/tools/clang/plugins/tests/
H A Doverridden_methods.h16 virtual void SomeMethodWithExceptionSpec() throw() = 0;
17 virtual void SomeConstMethodWithExceptionSpec() const throw(int) = 0;
57 // Should warn with the insertion point after the throw spec.
58 virtual void SomeMethodWithExceptionSpec() throw() {}
59 // Should warn with the insertion point after both the const and the throw
61 virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h58 exception() throw();
59 virtual ~exception() throw();
60 virtual const char *what() const throw() {
67 bad_alloc() throw();
68 bad_alloc(const bad_alloc&) throw();
69 bad_alloc& operator=(const bad_alloc&) throw();
70 virtual const char* what() const throw() {
203 void* operator new(std::size_t, const std::nothrow_t&) throw();
204 void* operator new[](std::size_t, const std::nothrow_t&) throw();
205 void operator delete(void*, const std::nothrow_t&) throw();
[all...]
/external/proguard/examples/dictionaries/
H A Dkeywords.txt33 throw
/external/chromium_org/v8/src/
H A Dzone-allocator.h29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {}
30 explicit zone_allocator(const zone_allocator& other) throw()
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw()
45 size_type max_size() const throw() {
/external/jsoncpp/include/json/
H A Dassertions.h16 #define JSON_ASSERT( condition ) assert( condition ); // @todo <= change this into an exception throw
17 #define JSON_FAIL_MESSAGE( message ) throw std::runtime_error( message );
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_throw.c64 throw(ptw32_exception_cancel,ptw32_exception_exit) function
89 * so there is no point to jump or throw back to. Just do an
147 throw ptw32_exception_cancel ();
150 throw ptw32_exception_exit ();
/external/libcxx/test/support/
H A Dtest_allocator.h54 test_allocator() throw() : data_(0) {++count;}
55 explicit test_allocator(int i) throw() : data_(i) {++count;}
56 test_allocator(const test_allocator& a) throw()
58 template <class U> test_allocator(const test_allocator<U>& a) throw()
60 ~test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;}
68 throw std::bad_alloc();
79 size_type max_size() const throw()
112 test_allocator() throw() : data_(-1) {}
113 explicit test_allocator(int i) throw() : data_(i) {}
114 test_allocator(const test_allocator& a) throw()
[all...]
/external/libcxx/test/thread/futures/
H A Dtest_allocator.h49 test_allocator() throw() : data_(-1) {}
50 explicit test_allocator(int i) throw() : data_(i) {}
51 test_allocator(const test_allocator& a) throw()
53 template <class U> test_allocator(const test_allocator<U>& a) throw()
55 ~test_allocator() throw() {data_ = 0;}
62 throw std::bad_alloc();
72 size_type max_size() const throw()
105 test_allocator() throw() : data_(-1) {}
106 explicit test_allocator(int i) throw() : data_(i) {}
107 test_allocator(const test_allocator& a) throw()
[all...]
/external/stlport/stlport/stl/config/
H A D_apple.h63 # define _STLP_THROW(x) (DebugStr("\pSTL is about to throw exception: "#x),throw x)
111 # define _STLP_MPWFIX_CATCH }catch(...){throw;} //*TY 06/01/2000 - exception handling bug workaround
112 # define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception handling bug workaround
/external/clang/include/clang/AST/
H A DAttr.h57 void* operator new(size_t bytes) throw() {
60 void operator delete(void* data) throw() {
67 size_t Alignment = 16) throw() {
71 size_t Alignment) throw() {

Completed in 6472 milliseconds

1234