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

1 2 3

  /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/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/luni/src/main/java/java/lang/
Exception.java 22 * {@code Exception} is the superclass of all classes that represent recoverable
30 public class Exception extends Throwable {
34 * Constructs a new {@code Exception} that includes the current stack trace.
36 public Exception() {
40 * Constructs a new {@code Exception} with the current stack trace and the
44 * the detail message for this exception.
46 public Exception(String detailMessage) {
51 * Constructs a new {@code Exception} with the current stack trace, the
55 * the detail message for this exception.
57 * the cause of this exception
    [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/lldb/test/api/multithreaded/
common.h 6 #include <exception>
14 /// Simple exception class with a message
15 struct Exception : public std::exception
18 Exception(std::string ss) : s(ss) {}
19 virtual ~Exception() throw () { }
  /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: "
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
FakeImageRequest.java 39 throws Exception {
41 throw new Exception();
  /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,
synth_minidump.h 273 class Exception : public Stream {
275 Exception(const Dump &dump,
  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 32 Exception tr = null;
34 throw new Exception();
35 } catch (Exception e) {
  /external/v8/include/
v8-debug.h 18 Exception = 2,
  /art/test/044-proxy/src/
WrappedThrow.java 46 System.err.println("No exception thrown");
50 System.err.println("Got unexpected exception: " + t);
55 System.err.println("No exception thrown");
59 System.err.println("Got unexpected exception: " + t);
64 System.err.println("No exception thrown");
68 System.err.println("Got unexpected exception: " + t);
76 System.err.println("No exception thrown");
80 System.err.println("Got unexpected exception: " + t);
85 System.err.println("No exception thrown");
89 System.err.println("Got unexpected exception: " + t)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
StaticMetadataCollectionTest.java 43 protected void setUp() throws Exception {
49 protected void tearDown() throws Exception {
79 } catch (Exception e) {
98 private double getJsonValueAsDouble(String name, Object obj) throws Exception {
101 throw new Exception();
118 throw new Exception();
122 private void dumpJsonArrayAsCtsResult(String name, JSONArray arr) throws Exception {
146 throw new Exception();
171 } catch (Exception e) {
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 81 class Exception {};
89 cxx_throw<Exception>("Youpi",1);
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 378 // exception.
504 // Close the application if this exception will not be handled by the
509 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception;
510 if (Exception.dwFirstChance > 0) {
513 errs() << "First chance exception at "
514 << Exception.ExceptionRecord.ExceptionAddress
515 << ", exception code: "
517 Exception.ExceptionRecord.ExceptionCode)
518 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"
    [all...]

Completed in 2814 milliseconds

1 2 3