Home
last modified time | relevance | path

Searched refs:exception_ (Results 1 – 13 of 13) sorted by relevance

/external/ImageMagick/Magick++/lib/
DException.cpp686 std::string Magick::formatExceptionMessage(const MagickCore::ExceptionInfo *exception_) in formatExceptionMessage() argument
690 if (exception_->reason != (char *) NULL) in formatExceptionMessage()
693 message+=std::string(exception_->reason); in formatExceptionMessage()
696 if (exception_->description != (char *) NULL) in formatExceptionMessage()
697 message += " (" + std::string(exception_->description) + ")"; in formatExceptionMessage()
701 Magick::Exception* Magick::createException(const MagickCore::ExceptionInfo *exception_) in createException() argument
703 std::string message=formatExceptionMessage(exception_); in createException()
704 switch (exception_->severity) in createException()
820 MagickPPExport void Magick::throwException(ExceptionInfo *exception_, in throwException() argument
840 if (exception_->severity == MagickCore::UndefinedException) in throwException()
[all …]
/external/v8/src/wasm/
Dwasm-result.h109 i::Handle<i::Object> result = exception_; in Reify()
110 exception_ = i::Handle<i::Object>::null(); in Reify()
114 bool error() const { return !exception_.is_null(); } in error()
122 i::Handle<i::Object> exception_; variable
Dwasm-result.cc46 exception_ = isolate_->factory()->NewError(constructor, message); in Format()
94 isolate_->ScheduleThrow(*exception_); in ~ErrorThrower()
/external/google-breakpad/src/processor/
Dminidump.cc2891 exception_(), in MinidumpException()
2908 if (expected_size != sizeof(exception_)) { in Read()
2910 " != " << sizeof(exception_); in Read()
2914 if (!minidump_->ReadBytes(&exception_, sizeof(exception_))) { in Read()
2920 Swap(&exception_.thread_id); in Read()
2923 Swap(&exception_.exception_record.exception_code); in Read()
2924 Swap(&exception_.exception_record.exception_flags); in Read()
2925 Swap(&exception_.exception_record.exception_record); in Read()
2926 Swap(&exception_.exception_record.exception_address); in Read()
2927 Swap(&exception_.exception_record.number_parameters); in Read()
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DException.h410 const MagickCore::ExceptionInfo *exception_);
412 Exception* createException(const MagickCore::ExceptionInfo *exception_);
421 MagickCore::ExceptionInfo *exception_,const bool quiet_=false);
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h600 return valid_ ? &exception_ : NULL; in exception()
623 MDRawExceptionStream exception_; variable
/external/ImageMagick/Magick++/tests/
Dattributes.cpp644 catch ( Exception &exception_) in main() local
647 << " \"" << exception_.what() << "\"" << endl; in main()
/external/v8/src/debug/
Ddebug.js906 this.exception_ = exception;
918 return this.exception_;
Dmirrors.js1392 this.exception_ = details[3];
1446 return this.exception_ ? true : false;
/external/v8/src/
Disolate.cc224 v->VisitPointer(bit_cast<Object**>(&(block->exception_))); in Iterate()
1460 if (scheduled_exception() == handler->exception_) { in Throw()
2569 try_catch_handler()->exception_ = heap()->null_value(); in Throw()
2576 handler->exception_ = pending_exception(); in Throw()
Dapi.cc2604 return !reinterpret_cast<i::Object*>(exception_)->IsTheHole(isolate_); in HasCaught()
2628 i::Object* exception = reinterpret_cast<i::Object*>(exception_); in Exception()
2638 i::Object* raw_obj = reinterpret_cast<i::Object*>(exception_); in StackTrace()
2685 exception_ = the_hole; in ResetInternal()
/external/v8/src/ast/
Dast.h2540 Expression* exception() const { return exception_; } in exception()
2541 void set_exception(Expression* e) { exception_ = e; } in set_exception()
2547 : Expression(pos, kThrow), exception_(exception) {} in Throw()
2549 Expression* exception_; variable
/external/v8/include/
Dv8.h8018 void* exception_; variable