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

1 2 3 4

  /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...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISException.h 26 #include <exception>
47 Inherits from std::exception so you can simply log those messages if you want to be generic.
48 Also note that this has a source file now since OSX was not finding the OIS::Exception symbol
49 which would cause program abortion with now correponding exception type.
51 class _OISExport Exception : public std::exception
54 Exception() : eType(E_General), eLine(0), eFile(0) {}
56 //! Creates exception object
57 Exception( OIS_ERROR err, const char* str, int line, const char *file )
60 ~Exception() throw() {
    [all...]
  /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.
85 //! Exception for internal errors.
  /external/junit/src/org/junit/internal/runners/statements/
ExpectException.java 19 public void evaluate() throws Exception {
28 String message= "Unexpected exception, expected<"
31 throw new Exception(message, e);
35 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();
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /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/google-breakpad/src/processor/
synth_minidump.cc 297 Exception::Exception(const Dump &dump,
  /external/xmlrpcpp/src/
XmlRpcDispatch.h 32 Exception = 4 //!< uh oh

Completed in 679 milliseconds

1 2 3 4