Home
last modified time | relevance | path

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

/external/ImageMagick/Magick++/lib/
DException.cpp685 std::string Magick::formatExceptionMessage(const MagickCore::ExceptionInfo *exception_) in formatExceptionMessage() argument
689 if (exception_->reason != (char *) NULL) in formatExceptionMessage()
692 message+=std::string(exception_->reason); in formatExceptionMessage()
695 if (exception_->description != (char *) NULL) in formatExceptionMessage()
696 message += " (" + std::string(exception_->description) + ")"; in formatExceptionMessage()
700 Magick::Exception* Magick::createException(const MagickCore::ExceptionInfo *exception_) in createException() argument
702 std::string message=formatExceptionMessage(exception_); in createException()
703 switch (exception_->severity) in createException()
819 MagickPPExport void Magick::throwException(ExceptionInfo *exception_, in throwException() argument
839 if (exception_->severity == MagickCore::UndefinedException) in throwException()
[all …]
/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/
Disolate.cc264 bit_cast<Object**>(&(block->exception_))); in Iterate()
1622 if (scheduled_exception() == handler->exception_) { in Throw()
1961 handler->exception_ = pending_exception(); in Throw()
2788 try_catch_handler()->exception_ = ReadOnlyRoots(heap()).null_value(); in Throw()
2813 handler->exception_ = pending_exception(); in Throw()
Dapi.cc2710 return !reinterpret_cast<i::Object*>(exception_)->IsTheHole(isolate_); in HasCaught()
2734 i::Object* exception = reinterpret_cast<i::Object*>(exception_); in Exception()
2744 i::Object* raw_obj = reinterpret_cast<i::Object*>(exception_); in StackTrace()
2785 exception_ = the_hole; in ResetInternal()
/external/v8/src/ast/
Dast.h2198 Expression* exception() const { return exception_; } in exception()
2204 : Expression(pos, kThrow), exception_(exception) {} in Throw()
2206 Expression* exception_; variable
/external/v8/include/
Dv8.h8968 void* exception_;