/ndk/sources/cxx-stl/gabi++/include/ |
D | new | 46 bad_alloc() throw(); 47 virtual ~bad_alloc() throw(); 48 virtual const char* what() const throw(); 52 new_handler set_new_handler(new_handler) throw(); 56 void* operator new(std::size_t size) throw(std::bad_alloc); 57 void* operator new(std::size_t size, const std::nothrow_t&) throw(); 58 void* operator new[](std::size_t size) throw(std::bad_alloc); 59 void* operator new[](std::size_t size, const std::nothrow_t&) throw(); 61 void operator delete[](void* ptr) throw(); 62 void operator delete[](void* const, std::nothrow_t&) throw(); [all …]
|
D | exception | 37 exception() throw(); 38 virtual ~exception() throw(); 39 virtual const char* what() const throw(); 44 bad_exception() throw(); 45 virtual ~bad_exception() throw(); 46 virtual const char* what() const throw(); 59 bool uncaught_exception() throw();
|
D | typeinfo | 82 bad_cast() throw(); 83 virtual ~bad_cast() throw(); 84 virtual const char* what() const throw(); 89 bad_typeid() throw(); 90 virtual ~bad_typeid() throw(); 91 virtual const char* what() const throw();
|
D | cxxabi.h | 348 bool __cxa_uncaught_exception() throw(); 349 void __cxa_decrement_exception_refcount(void* exceptionObject) throw(); 350 void __cxa_increment_exception_refcount(void* exceptionObject) throw(); 352 void* __cxa_current_primary_exception() throw();
|
/ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/ |
D | test_allocator.h | 40 test_allocator() throw() : data_(-1) {} in throw() function 41 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 42 test_allocator(const test_allocator& a) throw() in throw() function 44 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 46 ~test_allocator() throw() {data_ = 0;} in throw() function 52 throw std::bad_alloc(); 58 size_type max_size() const throw() in max_size() 91 test_allocator() throw() : data_(-1) {} in throw() function 92 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 93 test_allocator(const test_allocator& a) throw() in throw() function [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/ |
D | test_allocator.h | 40 test_allocator() throw() : data_(-1) {} in throw() function 41 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 42 test_allocator(const test_allocator& a) throw() in throw() function 44 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 46 ~test_allocator() throw() {data_ = 0;} in throw() function 52 throw std::bad_alloc(); 58 size_type max_size() const throw() in max_size()
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/ |
D | test_allocator.h | 45 test_allocator() throw() : data_(0) {++count;} in throw() function 46 explicit test_allocator(int i) throw() : data_(i) {++count;} in test_allocator() 47 test_allocator(const test_allocator& a) throw() in throw() function 49 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 51 ~test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;} in throw() function 58 throw std::bad_alloc(); 65 size_type max_size() const throw() in max_size()
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | codecvt | 103 virtual int do_encoding() const throw(); 104 virtual bool do_always_noconv() const throw(); 107 virtual int do_max_length() const throw(); 138 virtual int do_encoding() const throw(); 139 virtual bool do_always_noconv() const throw(); 142 virtual int do_max_length() const throw(); 173 virtual int do_encoding() const throw(); 174 virtual bool do_always_noconv() const throw(); 177 virtual int do_max_length() const throw(); 226 virtual int do_encoding() const throw(); [all …]
|
D | __sso_allocator | 44 _LIBCPP_INLINE_VISIBILITY __sso_allocator() throw() : __allocated_(false) {} 45 … _LIBCPP_INLINE_VISIBILITY __sso_allocator(const __sso_allocator&) throw() : __allocated_(false) {} 46 …ate <class _Up> _LIBCPP_INLINE_VISIBILITY __sso_allocator(const __sso_allocator<_Up, _Np>&) throw() 67 … _LIBCPP_INLINE_VISIBILITY size_type max_size() const throw() {return size_type(~0) / sizeof(_Tp);}
|
D | future | 580 throw future_error(make_error_code(future_errc::promise_already_satisfied)); 600 throw future_error(make_error_code(future_errc::promise_already_satisfied)); 662 throw future_error(make_error_code(future_errc::promise_already_satisfied)); 677 throw future_error(make_error_code(future_errc::promise_already_satisfied)); 1068 throw future_error(make_error_code(future_errc::future_already_retrieved)); 1172 throw future_error(make_error_code(future_errc::future_already_retrieved)); 1374 throw future_error(make_error_code(future_errc::no_state)); 1385 throw future_error(make_error_code(future_errc::no_state)); 1398 throw future_error(make_error_code(future_errc::no_state)); 1411 throw future_error(make_error_code(future_errc::no_state)); [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/ |
D | test_allocator.h | 40 test_allocator() throw() : data_(-1) {} in throw() function 41 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 42 test_allocator(const test_allocator& a) throw() in throw() function 44 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 46 ~test_allocator() throw() {data_ = 0;} in throw() function 52 throw std::bad_alloc(); 58 size_type max_size() const throw() in max_size()
|
/ndk/sources/cxx-stl/llvm-libc++/test/re/ |
D | test_allocator.h | 40 test_allocator() throw() : data_(-1) {} in throw() function 41 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 42 test_allocator(const test_allocator& a) throw() in throw() function 44 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 46 ~test_allocator() throw() {data_ = 0;} in throw() function 52 throw std::bad_alloc(); 58 size_type max_size() const throw() in max_size()
|
/ndk/sources/cxx-stl/llvm-libc++/test/containers/ |
D | test_allocator.h | 40 test_allocator() throw() : data_(-1) {} in throw() function 41 explicit test_allocator(int i) throw() : data_(i) {} in test_allocator() 42 test_allocator(const test_allocator& a) throw() in throw() function 44 template <class U> test_allocator(const test_allocator<U>& a) throw() in test_allocator() 46 ~test_allocator() throw() {data_ = 0;} in throw() function 52 throw std::bad_alloc(); 58 size_type max_size() const throw() in max_size()
|
D | stack_allocator.h | 33 throw std::bad_alloc();
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _apple.h | 63 # 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 … 112 # define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception…
|
D | features.h | 818 # define _STLP_THROW(x) throw x 820 # define _STLP_RETHROW throw 822 # define _STLP_UNWIND(action) catch(...) { action; throw; } 831 # define _STLP_THROWS(x) throw(x) 834 # define _STLP_NOTHROW throw() 855 # define _STLP_THROWS_INHERENTLY(x) throw x 856 # define _STLP_NOTHROW_INHERENTLY throw()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _range_errors.c | 22 # define _STLP_THROW_MSG(ex,msg) throw std::ex(msg) 35 # define _STLP_THROW_MSG(ex,msg) throw ex(msg)
|
/ndk/tests/device/issue22165-typeinfo/jni/ |
D | myexception.h | 17 virtual ~my_exception() throw() in ~my_exception()
|
/ndk/tests/device/gnustl-shared-1/ |
D | README | 1 This checks that one can link against gnustl_shared and still throw exceptions
|
/ndk/tests/build/b8247455-hidden-cxa/jni/ |
D | Android.mk | 27 LOCAL_SRC_FILES:= throw.cpp
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | full_streambuf.h | 30 throw "streambuf full"; in overflow()
|
/ndk/tests/device/test-stlport/unit/ |
D | full_streambuf.h | 30 throw "streambuf full"; in overflow()
|
/ndk/tests/device/test-gabi++/ |
D | README | 6 dynamic_cast<> and try..throw..catch really work.
|
/ndk/sources/host-tools/ndk-stack/elff/ |
D | elf_alloc.h | 153 void* operator new(size_t size) throw() { in new()
|
/ndk/tests/device/test-basic-exceptions/ |
D | README | 9 libsupc++.a without any kind of conflict, and that the try / throw / catch
|