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

1 2 3 4 5 6 78 91011>>

  /ndk/sources/cxx-stl/gabi++/tests/
catch_function_01.cpp 21 throw f; // converts to void (*)()
catch_function_02.cpp 21 throw f; // converts to void (*)()
catch_ptr_02.cpp 20 throw &a;
36 throw &a;
52 throw &ca;
68 throw &ca;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_function_01.cpp 21 throw f; // converts to void (*)()
catch_function_02.cpp 21 throw f; // converts to void (*)()
  /ndk/tests/device/test-gnustl_shared-exception/jni/
test2_main.cpp 24 throw std::runtime_error("OK: Throw in main, catch in lib!");
  /ndk/tests/device/test-gnustl_static-exception/jni/
test2_main.cpp 24 throw std::runtime_error("OK: Throw in main, catch in lib!");
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh5.cpp 8 void cause_error(void) { throw "Hello World!"; }
synth2.cpp 10 throw "exception in foo ctor";
terminate2.cpp 15 throw 1;
variadic73.cpp 7 template<typename... Exceptions> void f(int idx) throw(Exceptions...) {
8 if (idx == 0) throw A();
9 else if (idx == 1) throw B();
10 else if (idx == 2) throw C();
eh23.cpp 15 throw double_fault();
21 throw E();
24 throw;
eh24.cpp 22 throw 1.0;
25 throw 1; // make sure both a1 and a2 are not destroyed when we throw!
28 throw 1.0;
has_nothrow_copy-2.cpp 5 struct A { template <class T> A (T) throw (int); };
6 struct B { B (B&) throw (); template <class T> B (T) throw (int); };
new1.cpp 13 void * operator new[] (size_t s) throw (std::bad_alloc)
19 void operator delete[] (void *p) throw ()
28 A() { throw 1; }
new7.cpp 14 throw 1;
16 void* operator new ( std::size_t n ) throw ( std::bad_alloc )
21 void operator delete( void* p, std::size_t n ) throw()
spec1.cpp 9 void my_unexp () { throw 42; }
12 f () throw (char, int, std::bad_exception)
14 throw 'a';
spec2.cpp 3 // Test 2: the second throw succeeds.
9 void my_unexp () { throw 42; }
12 f () throw (int, std::bad_exception)
14 throw 'a';
spec3_1.cpp 3 // Test 3: the bad_exception throw succeeds.
9 void my_unexp () { throw 42; }
12 f () throw (std::bad_exception)
14 throw 'a';
  /ndk/tests/device/test-stlport_static-exception/jni/
eh5.cpp 8 void cause_error(void) { throw "Hello World!"; }
synth2.cpp 10 throw "exception in foo ctor";
terminate2.cpp 15 throw 1;
variadic73.cpp 7 template<typename... Exceptions> void f(int idx) throw(Exceptions...) {
8 if (idx == 0) throw A();
9 else if (idx == 1) throw B();
10 else if (idx == 2) throw C();
  /external/clang/test/CodeGenCXX/
exceptions-no-rtti.cpp 35 throw A();
38 void test1() throw(B) {
49 throw ptr;
  /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...]

Completed in 331 milliseconds

1 2 3 4 5 6 78 91011>>