Searched defs:Exception (Results 1 - 25 of 42) sorted by relevance

12

/external/parameter-framework/upstream/test/functional-tests/include/
H A DException.hpp39 struct Exception : std::runtime_error struct in namespace:parameterFramework
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DException.pm1 package ANTLR::Runtime::Exception;
3 use Exception::Class;
7 extends 'Moose::Object', 'Exception::Class::Base';
/external/deqp/framework/randomshaders/
H A DrsgDefs.hpp36 class Exception : public std::runtime_error class in namespace:rsg
39 Exception (const std::string& message) : std::runtime_error(message) {} function in class:rsg::Exception
/external/javasqlite/src/main/java/SQLite/
H A DException.java7 public class Exception extends java.lang.Exception { class in inherits:java.lang.Exception
15 public Exception(String string) { method in class:Exception
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DException.pm1 package Test::ANTLR::Runtime::Exception;
/external/clang/test/SemaTemplate/
H A Dinstantiate-try-catch.cpp19 struct Exception { struct in class:PR10232::Templated
21 Exception(const Exception&); // expected-note{{declared private here}}
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
/external/clang/test/SemaCXX/
H A D__try.cpp16 class Exception class
19 Exception(const char* s = "Unknown"){what = strdup(s); } function in class:Exception
20 Exception(const Exception& e ){what = strdup(e.what); } function in class:Exception
21 ~Exception() {free(what); }
45 throw(Exception("Hardware error: Divide by 0"));
48 catch(const Exception& e)
50 printf("Caught C++ Exception: %s :\n", e.msg());
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcall-stack.rb51 class Exception class
/external/parameter-framework/upstream/test/functional-tests/
H A DFloatingPoint.cpp69 CHECK_THROWS_AS(mPf->start(), Exception);
91 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception); local
124 CHECK_THROWS_AS(setParameter(path, vec.payload), Exception); local
172 CHECK_THROWS_AS(handle.setAsDouble(vec.payload), Exception);
/external/python/cpython2/Lib/xml/sax/
H A D_exceptions.py4 from java.lang import Exception namespace
9 class SAXException(Exception):
24 Exception.__init__(self, msg)
40 mistake, since Exception has __getitem__ defined."""
106 """Exception class for an unrecognized identifier.
116 """Exception class for an unsupported operation.
126 """Exception class for a missing driver.
/external/python/cpython3/Lib/xml/sax/
H A D_exceptions.py4 from java.lang import Exception namespace
9 class SAXException(Exception):
24 Exception.__init__(self, msg)
40 mistake, since Exception has __getitem__ defined."""
106 """Exception class for an unrecognized identifier.
116 """Exception class for an unsupported operation.
126 """Exception class for a missing driver.
/external/deqp/framework/common/
H A DtcuDefs.hpp48 class Exception : public std::runtime_error class in namespace:tcu
51 Exception (const char* message, const char* expr, const char* file, int line);
52 Exception (const std::string& message);
53 virtual ~Exception (void) throw() {}
62 class TestException : public Exception
76 //! Exception for test errors.
86 //! Exception for internal errors.
H A DtcuDefs.cpp64 Exception::Exception (const char* message, const char* expr, const char* file, int line) function in class:tcu::Exception
70 Exception::Exception (const std::string& message) function in class:tcu::Exception
77 : Exception (formatError(message, expr, file, line))
83 : Exception (message)
/external/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h30 class Exception : public std::exception { class in namespace:sfntly
32 Exception() : what_("Unknown exception") {} function in class:sfntly::Exception
33 explicit Exception(const char* message) throw() { SetMessage(message); } function in class:sfntly::Exception
34 virtual ~Exception() throw() {}
48 class IndexOutOfBoundException : public Exception {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
52 : Exception(message) {}
65 class IOException : public Exception {
67 IOException() throw() : Exception("I/O exception") {}
68 explicit IOException(const char* message) throw() : Exception(messag
[all...]
/external/flatbuffers/tests/FlatBuffers.Test/
H A DAssert.cs25 public class AssertFailedException : Exception
42 public class AssertArrayFailedException : Exception
61 public class AssertUnexpectedThrowException : Exception
118 public static void Throws<T>(Action action) where T : Exception property in class:FlatBuffers.Test.Assert
/external/xmlrpcpp/src/
H A DXmlRpcDispatch.h32 Exception = 4 //!< uh oh enumerator in enum:XmlRpc::XmlRpcDispatch::EventType
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DRawConstants.h68 Exception, member in class:llvm::pdb::DbgHeaderType
/external/v8/include/
H A Dv8-debug.h18 Exception = 2, enumerator in enum:v8::DebugEvent
/external/google-breakpad/src/processor/
H A Dsynth_minidump.h273 class Exception : public Stream { class in namespace:google_breakpad::SynthMinidump
275 Exception(const Dump &dump,
H A Dsynth_minidump.cc297 Exception::Exception(const Dump &dump, function in class:google_breakpad::SynthMinidump::Exception
/external/ImageMagick/Magick++/lib/Magick++/
H A DException.h6 // Definition of Magick::Exception and derived classes
22 class MagickPPExport Exception: public std::exception class in namespace:Magick
27 Exception(const std::string& what_);
30 Exception(const std::string& what_, Exception* nested_);
33 Exception(const Exception& original_);
36 virtual ~Exception() throw();
39 Exception& operator=(const Exception
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dsizeofpack.cpp81 class Exception {}; class in namespace:pr13272
89 cxx_throw<Exception>("Youpi",1);
/external/ImageMagick/Magick++/lib/
H A DException.cpp6 // Implementation of Exception and derived classes
19 #include "Magick++/Exception.h"
21 Magick::Exception::Exception(const std::string& what_) function in class:Magick::Exception
24 _nested((Exception *) NULL)
28 Magick::Exception::Exception(const std::string& what_, function in class:Magick::Exception
29 Exception* nested_)
36 Magick::Exception::Exception(cons function in class:Magick::Exception
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp507 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; local
508 if (Exception.dwFirstChance > 0) {
512 << Exception.ExceptionRecord.ExceptionAddress
515 Exception.ExceptionRecord.ExceptionCode)
516 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
523 errs() << Exception.ExceptionRecord.ExceptionAddress
526 Exception.ExceptionRecord.ExceptionCode)
527 << " (" << Exception.ExceptionRecord.ExceptionCode
/external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
H A DKillTheDoctor.cpp546 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; local
547 if (Exception.dwFirstChance > 0) {
551 << Exception.ExceptionRecord.ExceptionAddress
554 Exception.ExceptionRecord.ExceptionCode)
555 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
562 errs() << Exception.ExceptionRecord.ExceptionAddress
565 Exception.ExceptionRecord.ExceptionCode)
566 << " (" << Exception.ExceptionRecord.ExceptionCode

Completed in 898 milliseconds

12