HomeSort by relevance Sort by last modified time
    Searched refs:throw (Results 51 - 75 of 2579) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
exception_ptr.h 62 exception_ptr current_exception() throw();
64 /// Throw the object pointed to by the exception_ptr.
77 explicit exception_ptr(void* __e) throw();
79 void _M_addref() throw();
80 void _M_release() throw();
82 void *_M_get() const throw() __attribute__ ((__pure__));
84 friend exception_ptr std::current_exception() throw();
88 exception_ptr() throw();
90 exception_ptr(const exception_ptr&) throw();
93 exception_ptr(nullptr_t) throw()
    [all...]
  /external/clang/test/CXX/except/except.spec/
template.cpp 5 template <int N> void f1() throw(int);
8 void (*t1)() throw(int) = &f1<0>;
9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}}
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
cg.cpp 6 ~D() throw();
9 ~E() throw();
17 b = noexcept(throw 0);
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh25.cpp 15 throw 1; // This throws from EH dtor, should call my_terminate
22 throw 1;
25 throw 1;
eh40.cpp 7 B() { throw 1; }
15 throw;
18 throw;
eh50.cpp 7 throw 42;
10 template <class T> void foo(T) throw (int) { throw "Hi"; }
eh51.cpp 7 throw 42;
10 template <class T> void foo(T) throw (T) { throw "Hi"; }
spec4.cpp 9 void my_unexp () { throw 42; }
12 f () throw (short)
14 throw 'a';
eh34.cpp 11 void foo() throw () { throw "Hi"; }
eh55.cpp 11 void throw_an_unexpected_exception() throw() {
12 throw 1;
has_nothrow_copy-3.cpp 6 F (const F&) throw () { }
7 template <class T> F (T) throw () { }
has_nothrow_copy-4.cpp 6 S (const S&) throw ();
7 S (...) throw (int);
  /ndk/tests/device/test-stlport_static-exception/jni/
eh25.cpp 15 throw 1; // This throws from EH dtor, should call my_terminate
22 throw 1;
25 throw 1;
eh40.cpp 7 B() { throw 1; }
15 throw;
18 throw;
eh50.cpp 7 throw 42;
10 template <class T> void foo(T) throw (int) { throw "Hi"; }
eh51.cpp 7 throw 42;
10 template <class T> void foo(T) throw (T) { throw "Hi"; }
spec4.cpp 9 void my_unexp () { throw 42; }
12 f () throw (short)
14 throw 'a';
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
get_mangled_names.cc 57 void operator delete(void* p) throw() { }
59 void operator delete[](void* p) throw() { }
61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; }
62 void operator delete(void* p, const std::nothrow_t&) throw() { }
63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; }
64 void operator delete[](void* p, const std::nothrow_t&) throw() { }
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
get_mangled_names.cc 57 void operator delete(void* p) throw() { }
59 void operator delete[](void* p) throw() { }
61 void* operator new(size_t size, const std::nothrow_t&) throw() { return &m; }
62 void operator delete(void* p, const std::nothrow_t&) throw() { }
63 void* operator new[](size_t size, const std::nothrow_t&) throw() { return &m; }
64 void operator delete[](void* p, const std::nothrow_t&) throw() { }
  /external/deqp/framework/delibs/decpp/
deSemaphore.hpp 48 void increment (void) throw();
49 void decrement (void) throw();
50 bool tryDecrement (void) throw();
70 inline void Semaphore::increment (void) throw()
85 inline void Semaphore::decrement (void) throw()
99 inline bool Semaphore::tryDecrement (void) throw()
  /external/clang/test/CodeGenCXX/
microsoft-abi-try-throw.cpp 7 throw int(13); // no error
19 #ifdef THROW
20 throw int(42); // expected-error {{cannot compile this throw expression yet}}
  /external/clang/test/SemaCXX/Inputs/
malloc.h 2 extern void *malloc (__SIZE_TYPE__ __size) throw () __attribute__ ((__malloc__)) ;
  /external/libcxxabi/src/
cxa_aux_runtime.cpp 24 throw std::bad_cast();
29 throw std::bad_typeid();
  /ndk/sources/cxx-stl/gabi++/src/
auxilary.cc 33 throw std::bad_cast();
37 throw std::bad_typeid();
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_aux_runtime.cpp 24 throw std::bad_cast();
29 throw std::bad_typeid();

Completed in 373 milliseconds

1 23 4 5 6 7 8 91011>>