HomeSort by relevance Sort by last modified time
    Searched refs:throw (Results 76 - 100 of 2059) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_static-exception/jni/
has_nothrow_copy-5.cpp 6 S (const S&) throw ();
7 S (int) throw (int);
has_nothrow_copy-6.cpp 5 S (S&) throw ();
6 S (const S&, int) throw (int);
has_nothrow_copy-7.cpp 6 S (const S&) throw ();
7 S (S&&) throw (int);
spec9.cpp 7 void test_array() throw (IntArray)
9 throw i;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
exception_ptr.h 67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
75 copy_exception(_Ex __ex) throw();
80 operator==(const exception_ptr&, const exception_ptr&) throw();
83 operator!=(const exception_ptr&, const exception_ptr&) throw();
89 explicit exception_ptr(void* __e) throw();
91 void _M_addref() throw();
92 void _M_release() throw();
94 void *_M_get() const throw();
98 friend exception_ptr std::current_exception() throw();
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
exception_ptr.h 67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
75 copy_exception(_Ex __ex) throw();
80 operator==(const exception_ptr&, const exception_ptr&) throw();
83 operator!=(const exception_ptr&, const exception_ptr&) throw();
89 explicit exception_ptr(void* __e) throw();
91 void _M_addref() throw();
92 void _M_release() throw();
94 void *_M_get() const throw();
98 friend exception_ptr std::current_exception() throw();
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
exception_ptr.h 67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
75 copy_exception(_Ex __ex) throw();
80 operator==(const exception_ptr&, const exception_ptr&) throw();
83 operator!=(const exception_ptr&, const exception_ptr&) throw();
89 explicit exception_ptr(void* __e) throw();
91 void _M_addref() throw();
92 void _M_release() throw();
94 void *_M_get() const throw();
98 friend exception_ptr std::current_exception() throw();
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
exception_ptr.h 67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
75 copy_exception(_Ex __ex) throw();
80 operator==(const exception_ptr&, const exception_ptr&) throw();
83 operator!=(const exception_ptr&, const exception_ptr&) throw();
89 explicit exception_ptr(void* __e) throw();
91 void _M_addref() throw();
92 void _M_release() throw();
94 void *_M_get() const throw();
98 friend exception_ptr std::current_exception() throw();
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
exception_ptr.h 67 exception_ptr current_exception() throw();
69 /// Throw the object pointed to by the %exception_ptr.
75 copy_exception(_Ex __ex) throw();
80 operator==(const exception_ptr&, const exception_ptr&) throw();
83 operator!=(const exception_ptr&, const exception_ptr&) throw();
89 explicit exception_ptr(void* __e) throw();
91 void _M_addref() throw();
92 void _M_release() throw();
94 void *_M_get() const throw();
98 friend exception_ptr std::current_exception() throw();
    [all...]
  /external/clang/test/CXX/except/except.spec/
p5-pointers.cpp 26 void s1() throw();
27 void s2() throw(int);
28 void s3() throw(A);
29 void s4() throw(B1);
30 void s5() throw(D);
32 void s7() throw(int, float);
33 void (*s8())() throw(B1); // s8 returns a pointer to function with spec
34 void s9(void (*)() throw(B1)); // s9 takes pointer to function with spec
43 void (*t1)() throw() = &s1; // valid
46 void (&t2)() throw() = s2; // expected-error {{not superset}
    [all...]
  /abi/cpp/src/
delete.cc 34 operator delete(void* ptr) throw()
  /external/clang/test/CXX/basic/basic.stc/basic.stc.dynamic/
p2.cpp 22 void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}}
23 void* operator new[](std::size_t) throw(std::bad_alloc);
24 void operator delete(void*) throw(); // expected-note{{previous declaration}}
25 void operator delete[](void*) throw();
27 void* operator new(std::size_t); // expected-warning{{'operator new' is missing exception specification 'throw(std::bad_alloc)'}}
28 void operator delete(void*); // expected-warning{{'operator delete' is missing exception specification 'throw()'}}
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 10 throw E(); // commenting out 'if' or 'throw' 'fixes' the assertion failure
throw-expression-dtor.cpp 13 throw *this;
try-catch.cpp 9 throw g();
  /external/lzma/CPP/Common/
NewHandler.h 13 operator delete(void *p) throw();
  /ndk/tests/build/b8247455-hidden-cxa/jni/
throw.cpp 5 throw 20;
  /ndk/tests/device/gnustl-shared-1/jni/
foo.cpp 8 throw std::exception();
  /ndk/tests/device/issue22165-typeinfo/jni/
throwable.cpp 9 throw my_exception("my exception");
  /ndk/tests/device/static-executable/jni/
main.cxx 6 throw 20;
  /ndk/tests/device/test-gnustl_shared-exception/jni/
test1_foo.cpp 22 throw std::runtime_error("OK: Throw in lib, catch in exec!");
test3_bar.cpp 22 throw std::runtime_error("OK: Throw in lib2, catch in exec!");
test4_bar.cpp 22 throw std::runtime_error("OK: Throw in lib2, catch in lib1!");
  /ndk/tests/device/test-gnustl_static-exception/jni/
test1_foo.cpp 22 throw std::runtime_error("OK: Throw in lib, catch in exec!");
test3_bar.cpp 22 throw std::runtime_error("OK: Throw in lib2, catch in exec!");

Completed in 655 milliseconds

1 2 34 5 6 7 8 91011>>