Searched defs:Exception (Results 1 - 25 of 30) sorted by last modified time

12

/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/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp508 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; local
509 if (Exception.dwFirstChance > 0) {
513 << Exception.ExceptionRecord.ExceptionAddress
516 Exception.ExceptionRecord.ExceptionCode)
517 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
524 errs() << Exception.ExceptionRecord.ExceptionAddress
527 Exception.ExceptionRecord.ExceptionCode)
528 << " (" << Exception.ExceptionRecord.ExceptionCode
/external/lldb/test/api/multithreaded/
H A Dcommon.h15 struct Exception : public std::exception struct in inherits:std::exception
18 Exception(std::string ss) : s(ss) {} function in struct:Exception
19 virtual ~Exception() throw () { }
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki_common.h105 /* Exception related structures (Used in debug mode only)
343 EXCEPTION_T Exception[GKI_MAX_EXCEPTION]; member in struct:__anon23885
/external/libnfc-nci/src/gki/common/
H A Dgki_common.h105 /* Exception related structures (Used in debug mode only)
343 EXCEPTION_T Exception[GKI_MAX_EXCEPTION]; member in struct:__anon23898
/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/deqp/framework/common/
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)
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.
85 //! Exception for internal errors.
/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/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/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/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/lib/CodeGen/
H A DCGObjCGNU.cpp2663 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
2664 ExceptionAsObject = Exception;
H A DCGObjCMac.cpp3669 Objective-C setjmp-longjmp (sjlj) Exception Handling
4098 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
4100 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
6981 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
6982 Exception = CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
6983 CGF.EmitRuntimeCallOrInvoke(ObjCTypes.getExceptionThrowFn(), Exception)
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1 //===--- SemaExceptionSpec.cpp - C++ Exception Specifications ---*- C++ -*-===//
321 /// exception specifications. Exception specifications are equivalent if
467 QualType Exception = *WithExceptions->exception_begin(); local
468 if (CXXRecordDecl *ExRecord = Exception->getAsCXXRecordDecl()) {
506 "Exception compatibility logic error: non-dynamic spec slipped through.");
621 "Exception spec subset: non-dynamic case slipped through.");
/external/chromium_org/v8/include/
H A Dv8-debug.h18 Exception = 2, enumerator in enum:v8::DebugEvent
H A Dv8.h1251 * Exception stack trace. By default stack traces are not captured for
4118 class V8_EXPORT Exception { class in namespace:v8
5305 Local<Value> Exception() const;
/external/chromium_org/v8/src/
H A Dapi.cc1928 v8::Local<v8::Value> exc = v8::Local<v8::Value>::New(isolate, Exception());
1976 v8::Local<Value> v8::TryCatch::Exception() const { function in class:v8::v8::TryCatch
6857 Local<Value> Exception::NAME(v8::Handle<v8::String> raw_message) { \
6860 ON_BAILOUT(isolate, "v8::Exception::" #NAME "()", return Local<Value>()); \
H A Dd8.js64 Exception: 2,
174 result += 'Exception: ';
H A Ddebug-debugger.js18 Exception: 2,
208 // Exception evaluating condition counts as not triggered.
1084 return Debug.DebugEvent.Exception;
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.h319 enum Exception { enum in class:v8::internal::Simulator
/external/chromium_org/v8/src/mips64/
H A Dsimulator-mips64.h371 enum Exception { enum in class:v8::internal::Simulator
/external/chromium_org/third_party/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/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 456 milliseconds

12