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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
no-exceptions.cpp 6 void f() throw (int) {
throw-expressions.cpp 5 return throw val, val;
9 return val ? throw val : val;
14 throw false;
19 return 1 ? throw val : val;
24 return (x ? throw 1 : y) ? z : throw 2;
48 return (x ? throw 1 : y) ? z : (throw 2);
exception-spec-decay.cpp 4 void foo() throw (Array) {
5 throw 0;
11 void foo() throw (S[10]) {
12 throw 0;
18 void foo() throw (T) {
19 throw 0;
  /ndk/tests/device/test-stlport_shared-exception/jni/
eb88.cpp 11 throw(NULL);
eh49.cpp 5 throw 1;
eh47.cpp 13 throw "";
18 throw;
inline2.cpp 9 try { throw 1; }
19 throw 42;
cond1.cpp 21 (argc+1 ? has_destructor() : throw 0);
22 CI((argc+1 ? throw 0 : has_destructor()));
23 CI((0 ? has_destructor() : throw 0));
24 CI((1 ? throw 0 : has_destructor()));
25 (0 ? throw 0 : has_destructor());
26 (1 ? has_destructor() : throw 0);
28 (argc+1 ? no_destructor() : throw 0);
29 CI((argc+1 ? throw 0 : no_destructor()));
30 CI((0 ? no_destructor() : throw 0));
31 CI((1 ? throw 0 : no_destructor()))
    [all...]
cleanup2.cpp 15 throw 0;
21 X (int) throw (int);
22 ~X () throw ();
25 X::X (int) throw (int)
27 X::~X () throw ()
33 Y() throw (int);
34 ~Y() throw ();
36 Y::Y() throw (int)
39 Y::~Y() throw ()
eh25.cpp 15 throw 1; // This throws from EH dtor, should call my_terminate
22 throw 1;
25 throw 1;
  /ndk/tests/device/test-stlport_static-exception/jni/
eb88.cpp 11 throw(NULL);
eh49.cpp 5 throw 1;
eh47.cpp 13 throw "";
18 throw;
inline2.cpp 9 try { throw 1; }
19 throw 42;
cond1.cpp 21 (argc+1 ? has_destructor() : throw 0);
22 CI((argc+1 ? throw 0 : has_destructor()));
23 CI((0 ? has_destructor() : throw 0));
24 CI((1 ? throw 0 : has_destructor()));
25 (0 ? throw 0 : has_destructor());
26 (1 ? has_destructor() : throw 0);
28 (argc+1 ? no_destructor() : throw 0);
29 CI((argc+1 ? throw 0 : no_destructor()));
30 CI((0 ? no_destructor() : throw 0));
31 CI((1 ? throw 0 : no_destructor()))
    [all...]
cleanup2.cpp 15 throw 0;
21 X (int) throw (int);
22 ~X () throw ();
25 X::X (int) throw (int)
27 X::~X () throw ()
33 Y() throw (int);
34 ~Y() throw ();
36 Y::Y() throw (int)
39 Y::~Y() throw ()
  /external/clang/test/CXX/except/except.spec/
p2-places.cpp 10 void f() throw(int);
13 void (*fp)() throw (int);
16 void g(void pfa() throw(int));
19 typedef int (*pf)() throw(int); // expected-error {{specifications are not allowed in typedefs}}
24 void (*h())() throw(int);
29 void (*i() throw(int))(void (*)() throw(float)) throw(double);
32 void (**k)(void pfa() throw(int)); // no-error
35 void (**j)() throw(int); // expected-error {{not allowed beyond a single}
    [all...]
p3.cpp 7 extern void (*r1)() throw(int);
8 extern void (*r1)() throw(int);
12 extern void (*r2)() throw(int);
13 extern void (*r2)() throw(INT);
16 extern void (*r3)() throw(int, float);
17 extern void (*r3)() throw(float, int);
19 // MS throw-any spec and no spec at all are compatible
21 extern void (*r4)() throw(...);
23 // throw(X) and no spec are not compatible
24 extern void (*r5)() throw(int); // expected-note {{previous declaration}
    [all...]
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/sfntly/cpp/src/sfntly/port/
exception_type.h 33 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() : Exception(message) {
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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...]
  /prebuilts/ndk/8/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...]
  /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/expr/expr.unary/expr.unary.noexcept/
cg.cpp 6 ~D() throw();
9 ~E() throw();
17 b = noexcept(throw 0);

Completed in 345 milliseconds

12 3 4 5 6 7 8 91011>>