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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
catchptr1.cpp 20 throw &fn;
39 throw &A::fn;
58 throw &var;
77 throw &var;
96 throw &const_var;
120 throw (void ***)0;
138 throw (void const* const* const*)0;
172 throw (void ***)0;
197 throw (B **)0;
218 throw (B **)0
    [all...]
rethrow1.cpp 24 throw A();
31 throw A();
36 throw;
rethrow2.cpp 24 throw A();
31 throw;
36 throw;
rethrow4.cpp 24 throw A();
31 throw;
36 throw A();
  /ndk/tests/device/test-stlport_static-exception/jni/
catchptr1.cpp 20 throw &fn;
39 throw &A::fn;
58 throw &var;
77 throw &var;
96 throw &const_var;
120 throw (void ***)0;
138 throw (void const* const* const*)0;
172 throw (void ***)0;
197 throw (B **)0;
218 throw (B **)0
    [all...]
rethrow1.cpp 24 throw A();
31 throw A();
36 throw;
rethrow2.cpp 24 throw A();
31 throw;
36 throw;
rethrow4.cpp 24 throw A();
31 throw;
36 throw A();
  /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/deqp/framework/delibs/decpp/
deMutex.hpp 43 void lock (void) throw();
44 void unlock (void) throw();
45 bool tryLock (void) throw();
88 inline void Mutex::lock (void) throw()
102 inline void Mutex::unlock (void) throw()
114 inline bool Mutex::tryLock (void) throw()
deThreadLocal.cpp 35 throw std::bad_alloc();
  /external/libcxxabi/test/
catch_const_pointer_nullptr.cpp 20 throw nullptr;
37 throw nullptr;
53 throw nullptr;
69 throw nullptr;
85 throw nullptr;
101 throw nullptr;
catch_array_01.cpp 20 throw a; // converts to char*
  /external/valgrind/main/massif/tests/
overloaded-new.cpp 17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc)
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc)
32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
37 __attribute__((noinline)) void operator delete (void* p) throw()
42 __attribute__((noinline)) void operator delete[] (void* p) throw()
  /ndk/sources/cxx-stl/gabi++/tests/
catch_const_pointer_nullptr.cpp 20 throw nullptr;
37 throw nullptr;
53 throw nullptr;
69 throw nullptr;
85 throw nullptr;
101 throw nullptr;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_const_pointer_nullptr.cpp 20 throw nullptr;
37 throw nullptr;
53 throw nullptr;
69 throw nullptr;
85 throw nullptr;
101 throw nullptr;
  /prebuilts/misc/common/swig/include/2.0.11/lua/
_std_common.i 19 note: I allow front(), back() & pop_back() to throw exceptions
34 T front()const throw (std::out_of_range){ // only read front & back
36 throw std::out_of_range("in "#CLASS"::front()");
39 T back()const throw (std::out_of_range){ // not write to them
41 throw std::out_of_range("in "#CLASS"::back()");
54 void pop_front() throw (std::out_of_range){
56 throw std::out_of_range("in "#CLASS"::pop_front()");
66 void pop_back() throw (std::out_of_range){
68 throw std::out_of_range("in "#CLASS"::pop_back()");
82 T __getitem__(unsigned int idx) throw (std::out_of_range)
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
ConsoleClose.cpp 54 throw CCtrlBreakException();
61 throw "SetConsoleCtrlHandler fails";
69 throw "SetConsoleCtrlHandler fails";
  /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();
  /external/chromium_org/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(), ""),
  /external/chromium_org/tools/clang/plugins/tests/
overridden_methods.h 16 virtual void SomeMethodWithExceptionSpec() throw() = 0;
17 virtual void SomeConstMethodWithExceptionSpec() const throw(int) = 0;
57 // Should warn with the insertion point after the throw spec.
58 virtual void SomeMethodWithExceptionSpec() throw() {}
59 // Should warn with the insertion point after both the const and the throw
61 virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
  /external/clang/test/CXX/except/except.spec/
p14-ir.cpp 6 X0(const X0 &) throw();
12 X1(const X1 &) throw();
23 X4(X4 &) throw();
47 X6() throw();
  /external/clang/test/SemaCXX/
no-exceptions.cpp 25 throw; // expected-error {{cannot use 'throw' with exceptions disabled}}
  /external/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(), ""),

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>