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

/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/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/v8/include/
H A Dv8-debug.h75 Exception = 2, enumerator in enum:v8::DebugEvent
H A Dv8.h705 * Exception stack trace. By default stack traces are not captured for
2609 class V8EXPORT Exception { class in namespace:v8
3361 Local<Value> Exception() const;
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp500 EXCEPTION_DEBUG_INFO &Exception = DebugEvent.u.Exception; local
501 if (Exception.dwFirstChance > 0) {
505 << Exception.ExceptionRecord.ExceptionAddress
508 Exception.ExceptionRecord.ExceptionCode)
509 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n";
516 errs() << Exception.ExceptionRecord.ExceptionAddress
519 Exception.ExceptionRecord.ExceptionCode)
520 << " (" << Exception.ExceptionRecord.ExceptionCode
/external/bluetooth/bluedroid/gki/common/
H A Dgki_common.h95 /* Exception related structures (Used in debug mode only)
335 EXCEPTION_T Exception[GKI_MAX_EXCEPTION]; member in struct:__anon917
/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:__anon7367
/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:__anon7447
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1 //===--- SemaExceptionSpec.cpp - C++ Exception Specifications ---*- C++ -*-===//
284 /// exception specifications. Exception specifications are equivalent if
423 QualType Exception = *WithExceptions->exception_begin(); local
424 if (CXXRecordDecl *ExRecord = Exception->getAsCXXRecordDecl()) {
469 "Exception compatibility logic error: non-dynamic spec slipped through.");
586 "Exception spec subset: non-dynamic case slipped through.");
/external/v8/src/mips/
H A Dsimulator-mips.h334 enum Exception { enum in class:v8::internal::Simulator
/external/v8/src/
H A Dd8.js87 Exception: 2,
201 result += 'Exception: ';
H A Ddebug-debugger.js41 Exception: 2,
222 // Exception evaluating condition counts as not triggered.
1091 return Debug.DebugEvent.Exception;
H A Dobjects-inl.h488 return this == Failure::Exception();
827 return Failure::Exception();
1019 Failure* Failure::Exception() { function in class:v8::internal::Failure
H A Dapi.cc1663 v8::Local<v8::Value> exc = v8::Local<v8::Value>::New(Exception());
1689 v8::Local<Value> v8::TryCatch::Exception() const { function in class:v8::v8::TryCatch
5455 Local<Value> Exception::RangeError(v8::Handle<v8::String> raw_message) {
5458 ON_BAILOUT(isolate, "v8::Exception::RangeError()", return Local<Value>());
5471 Local<Value> Exception::ReferenceError(v8::Handle<v8::String> raw_message) {
5474 ON_BAILOUT(isolate, "v8::Exception::ReferenceError()", return Local<Value>());
5488 Local<Value> Exception::SyntaxError(v8::Handle<v8::String> raw_message) {
5491 ON_BAILOUT(isolate, "v8::Exception::SyntaxError()", return Local<Value>());
5504 Local<Value> Exception::TypeError(v8::Handle<v8::String> raw_message) {
5507 ON_BAILOUT(isolate, "v8::Exception
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp2543 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
2544 ExceptionAsObject = Exception;
H A DCGObjCMac.cpp3010 Objective-C setjmp-longjmp (sjlj) Exception Handling
3445 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
3447 CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
6297 llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); local
6298 Exception = CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy);
6299 CGF.EmitCallOrInvoke(ObjCTypes.getExceptionThrowFn(), Exception)

Completed in 475 milliseconds