HomeSort by relevance Sort by last modified time
    Searched defs:Exception (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/javasqlite/src/main/java/SQLite/
Exception.java 7 public class Exception extends java.lang.Exception {
10 * Construct a new SQLite exception.
15 public Exception(String string) {
  /external/parameter-framework/upstream/test/functional-tests/include/
Exception.hpp 38 /** Base class to all exception thrown by the Parameter Framework. */
39 struct Exception : std::runtime_error
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Exception.pm 1 package ANTLR::Runtime::Exception;
3 use Exception::Class;
7 extends 'Moose::Object', 'Exception::Class::Base';
  /external/deqp/framework/randomshaders/
rsgDefs.hpp 36 class Exception : public std::runtime_error
39 Exception (const std::string& message) : std::runtime_error(message) {}
  /libcore/ojluni/src/main/java/java/lang/
Exception.java 8 * particular file as subject to the "Classpath" exception as provided
29 * The class {@code Exception} and its subclasses are a form of
33 * <p>The class {@code Exception} and any subclasses that are not also
45 public class Exception extends Throwable {
49 * Constructs a new exception with {@code null} as its detail message.
53 public Exception() {
58 * Constructs a new exception with the specified detail message. The
65 public Exception(String message) {
70 * Constructs a new exception with the specified detail message and
73 * this exception's detail message
    [all...]
  /art/test/ExceptionHandle/
ExceptionHandle.java 20 int f() throws Exception {
25 } catch (Exception e) {
35 void g(int doThrow) throws Exception {
37 throw new Exception();
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Exception.pm 1 package Test::ANTLR::Runtime::Exception;
  /external/clang/test/SemaTemplate/
instantiate-try-catch.cpp 19 struct Exception {
21 Exception(const Exception&); // expected-note{{declared private here}}
23 void exception() { function in class:PR10232::Templated
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
  /external/clang/test/SemaCXX/
__try.cpp 16 class Exception
19 Exception(const char* s = "Unknown"){what = strdup(s); }
20 Exception(const Exception& e ){what = strdup(e.what); }
21 ~Exception() {free(what); }
38 puts("Another exception:");
44 puts("Caught a C-based exception.");
45 throw(Exception("Hardware error: Divide by 0"));
48 catch(const Exception& e)
50 printf("Caught C++ Exception: %s :\n", e.msg())
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/Validator/src/
Validator.java 82 throw new Exception();
84 } catch (Exception ex) {
  /prebuilts/jdk/jdk8/linux-x86/sample/annotations/Validator/src/
Validator.java 82 throw new Exception();
84 } catch (Exception ex) {
  /art/test/486-checker-must-do-null-check/src/
Main.java 20 public void InstanceOfPreChecked(Object o) throws Exception {
23 throw new Exception();
29 public void InstanceOf(Object o) throws Exception {
31 throw new Exception();
  /art/test/578-polymorphic-inlining/src/
Main.java 28 throw new Exception();
29 } catch (Exception e) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
call-stack.rb 51 class Exception
  /external/deqp/framework/common/
tcuDefs.cpp 64 Exception::Exception (const char* message, const char* expr, const char* file, int line)
70 Exception::Exception (const std::string& message)
77 : Exception (formatError(message, expr, file, line))
83 : Exception (message)
tcuDefs.hpp 47 //! Base exception class for dEQP test framework.
48 class Exception : public std::runtime_error
51 Exception (const char* message, const char* expr, const char* file, int line);
52 Exception (const std::string& message);
53 virtual ~Exception (void) throw() {}
61 //! Base exception class for test exceptions that affect test result
62 class TestException : public Exception
76 //! Exception for test errors.
86 //! Exception for internal errors.
  /external/flatbuffers/tests/FlatBuffers.Test/
Assert.cs 25 public class AssertFailedException : Exception
42 public class AssertArrayFailedException : Exception
61 public class AssertUnexpectedThrowException : Exception
72 get { return string.Format("Expected exception of type {0}", _expected); }
118 public static void Throws<T>(Action action) where T : Exception
  /external/junit/src/main/java/org/junit/internal/runners/statements/
ExpectException.java 16 public void evaluate() throws Exception {
25 String message = "Unexpected exception, expected<"
28 throw new Exception(message, e);
32 throw new AssertionError("Expected exception: "
  /external/parameter-framework/upstream/test/functional-tests/
FloatingPoint.cpp 69 CHECK_THROWS_AS(mPf->start(), Exception);
91 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception);
124 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception);
172 CHECK_THROWS_AS(handle.setAsDouble(vec.payload), Exception);
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
FakeImageRequest.java 39 throws Exception {
41 throw new Exception();
  /external/sfntly/cpp/src/sfntly/port/
exception_type.h 24 #include <exception>
30 class Exception : public std::exception {
32 Exception() : what_("Unknown exception") {}
33 explicit Exception(const char* message) throw() { SetMessage(message); }
34 virtual ~Exception() throw() {}
48 class IndexOutOfBoundException : public Exception {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
52 : Exception(message) {
    [all...]
  /external/dexmaker/dexmaker-mockito-tests/src/androidTest/java/com/android/dx/mockito/tests/
CleanStackTrace.java 49 throw new Exception();
50 } catch (Exception here) {
65 throw new Exception();
66 } catch (Exception here) {
88 throw new Exception();
89 } catch (Exception here) {
  /external/google-breakpad/src/processor/
synth_minidump.cc 297 Exception::Exception(const Dump &dump,
  /external/xmlrpcpp/src/
XmlRpcDispatch.h 32 Exception = 4 //!< uh oh
  /art/test/542-inline-trycatch/src/
Main.java 68 } catch (Exception ex) {
107 } catch (Exception ex) {
114 } catch (Exception ex) {
143 } catch (Exception ex) {
150 } catch (Exception ex) {
175 private static void throwException() throws Exception {
176 throw new Exception();

Completed in 1531 milliseconds

1 2 3 4 5 6