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

1 2 3 4 5 6 7 8 91011>>

  /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(), ""),
  /external/libvpx/libvpx/third_party/googletest/src/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/sources/cxx-stl/gabi++/tests/
catch_array_01.cpp 20 throw a; // converts to char*
catch_array_02.cpp 20 throw a; // converts to char*
test_gabixx_exceptions.cpp 25 throw "Memory allocation failure!";
  /ndk/sources/third_party/googletest/googletest/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();
  /ndk/tests/device/test-basic-exceptions/jni/
test_basic_exceptions.cpp 25 throw "Memory allocation failure!";
  /ndk/tests/device/test-stlport_shared-exception/jni/
array1_2.cpp 8 throw 3;
ctor1.cpp 22 throw 1;
eb50.cpp 6 throw foo();
eh16.cpp 15 throw 1;
eh17.cpp 14 throw 1;
eh29.cpp 11 throw 1;
eh3_1.cpp 8 void cause_error(void) { throw error(); }
eh42.cpp 9 throw 1;
flow1.cpp 6 throw 100;
gcsec1.cpp 14 throw 1;
init7.cpp 11 foo() { throw true; }
20 bar(); // must throw
24 bar(); // must throw again!
new11.cpp 8 void *operator new[](size_t bytes) throw (std::bad_alloc) {
new1_4.cpp 14 A() { throw 0; }
omit-frame-pointer2.cpp 13 throw int();

Completed in 534 milliseconds

1 2 3 4 5 6 7 8 91011>>