HomeSort by relevance Sort by last modified time
    Searched refs:throw (Results 26 - 50 of 3203) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
throw-expression-dtor.cpp 12 throw *this;
try-catch.cpp 9 throw g();
2006-03-06-C++RecurseCrash.cpp 20 virtual ~recursive_init() throw ();
23 recursive_init::~recursive_init() throw() { }
threadsafe-statics-exceptions.cpp 21 throw Y();
exceptions-no-rtti.cpp 35 throw A();
38 void test1() throw(B) {
49 throw ptr;
  /ndk/tests/device/gnustl-shared-1/jni/
foo.cpp 8 throw std::exception();
  /external/clang/test/CXX/except/except.spec/
p14.cpp 8 virtual ~X0() throw(A); // expected-note{{overridden virtual function is here}}
11 virtual ~X1() throw(B); // expected-note{{overridden virtual function is here}}
17 CA0 &operator=(const CA0&) throw(A);
20 CA1 &operator=(const CA1&) throw(B);
25 CA2 &(CA2::*captr1)(const CA2&) throw(A, B) = &CA2::operator=;
26 CA2 &(CA2::*captr2)(const CA2&) throw(A, B, C) = &CA2::operator=;
27 CA2 &(CA2::*captr3)(const CA2&) throw(A) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
28 CA2 &(CA2::*captr4)(const CA2&) throw(B) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
36 int inClassInit = (throw B(), 0);
40 static_assert(noexcept(IC0()), "IC0() does not throw");
    [all...]
p1.cpp 11 void f() throw() { }
13 void g(int) throw(X) { }
15 void h() throw(X, Y) { }
18 void foo() throw (X, Y) { }
21 void (*fptr)() throw();
46 void f() throw(int) noexcept { } // expected-error {{cannot have both}}
47 void g() noexcept throw(int) { } // expected-error {{cannot have both}}
p14-ir.cpp 6 X0(const X0 &) throw();
12 X1(const X1 &) throw();
23 X4(X4 &) throw();
47 X6() throw();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
special_function_util.h 63 static _Tp __pi() throw()
66 static _Tp __pi_2() throw()
69 static _Tp __pi_3() throw()
72 static _Tp __pi_4() throw()
75 static _Tp __1_pi() throw()
78 static _Tp __2_sqrtpi() throw()
81 static _Tp __sqrt2() throw()
84 static _Tp __sqrt3() throw()
87 static _Tp __sqrtpio2() throw()
90 static _Tp __sqrt1_2() throw()
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 63 static _Tp __pi() throw()
66 static _Tp __pi_2() throw()
69 static _Tp __pi_3() throw()
72 static _Tp __pi_4() throw()
75 static _Tp __1_pi() throw()
78 static _Tp __2_sqrtpi() throw()
81 static _Tp __sqrt2() throw()
84 static _Tp __sqrt3() throw()
87 static _Tp __sqrtpio2() throw()
90 static _Tp __sqrt1_2() throw()
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1/
special_function_util.h 63 static _Tp __pi() throw()
66 static _Tp __pi_2() throw()
69 static _Tp __pi_3() throw()
72 static _Tp __pi_4() throw()
75 static _Tp __1_pi() throw()
78 static _Tp __2_sqrtpi() throw()
81 static _Tp __sqrt2() throw()
84 static _Tp __sqrt3() throw()
87 static _Tp __sqrtpio2() throw()
90 static _Tp __sqrt1_2() throw()
    [all...]
  /abi/cpp/src/
new.cc 34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
39 throw std::bad_alloc();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
auto_ptr.h 101 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
110 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
123 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
134 operator=(auto_ptr& __a) throw()
152 operator=(auto_ptr<_Tp1>& __a) throw()
163 * The C++ standard says there is supposed to be an empty throw
179 operator*() const throw()
192 operator->() const throw()
209 get() const throw() { return _M_ptr; }
223 release() throw()
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/backward/
auto_ptr.h 101 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
110 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
123 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
134 operator=(auto_ptr& __a) throw()
152 operator=(auto_ptr<_Tp1>& __a) throw()
163 * The C++ standard says there is supposed to be an empty throw
179 operator*() const throw()
192 operator->() const throw()
209 get() const throw() { return _M_ptr; }
223 release() throw()
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/backward/
auto_ptr.h 101 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
110 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
123 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
134 operator=(auto_ptr& __a) throw()
152 operator=(auto_ptr<_Tp1>& __a) throw()
163 * The C++ standard says there is supposed to be an empty throw
179 operator*() const throw()
192 operator->() const throw()
209 get() const throw() { return _M_ptr; }
223 release() throw()
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 4 #define N(e) static_assert(!noexcept(e), "expected throw")
14 N(throw 0);
15 N((throw 0, 0));
19 void allspec() throw(...);
20 void intspec() throw(int);
21 void emptyspec() throw();
37 void (*pallspec)() throw(...);
38 void (*pintspec)() throw(int);
39 void (*pemptyspec)() throw();
54 void allspec() throw(...)
    [all...]
  /external/clang/test/CXX/special/class.copy/
p33-0x.cpp 22 throw x;
23 throw x2;
38 throw x2; // okay
39 throw x; // expected-error{{call to deleted constructor of 'PR10142::X'}}
50 throw x2; // okay
51 throw x; // expected-error{{call to deleted constructor of 'PR10142::X'}}
  /external/clang/test/SemaCXX/
exceptions.cpp 29 throw;
30 throw 0;
31 throw throw; // expected-error {{cannot throw object of incomplete type 'void'}}
32 throw (A*)0; // expected-error {{cannot throw pointer to object of incomplete type 'A'}}
101 // Cannot throw an abstract type.
106 throw *this; // expected-error{{cannot throw an object of abstract type 'foo'}
    [all...]
no-exceptions.cpp 25 throw; // expected-error {{cannot use 'throw' with exceptions disabled}}
  /external/oprofile/libutil++/
op_exception.cpp 24 op_exception::~op_exception() throw()
28 char const * op_exception::what() const throw()
53 op_runtime_error::~op_runtime_error() throw()
op_exception.h 31 ~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();
  /ndk/sources/cxx-stl/gabi++/src/
new.cc 34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
39 throw std::bad_alloc();
45 operator new[](std::size_t size) throw(/*std::bad_alloc*/)
  /external/chromium/testing/gtest/test/
gtest-death-test_ex_test.cc 53 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
63 virtual const char* what() const throw() { return "exceptional message"; }
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /ndk/tests/device/exceptions-crash/jni/
foo.cpp 9 throw std::exception();

Completed in 428 milliseconds

12 3 4 5 6 7 8 91011>>