Home
last modified time | relevance | path

Searched refs:exceptionInfo (Results 1 – 25 of 37) sorted by relevance

12

/external/ImageMagick/Magick++/lib/
DImage.cpp220 MagickTrue,exceptionInfo); in Image()
226 exceptionInfo); in Image()
310 SetImageAlpha(image(),OpaqueAlpha,exceptionInfo); in alpha()
455 bbox=GetImageBoundingBox(constImage(),exceptionInfo); in boundingBox()
477 SetImageDepth(image(),depth_,exceptionInfo); in channelDepth()
489 channel_depth=GetImageDepth(constImage(),exceptionInfo); in channelDepth()
508 SyncImage(image(),exceptionInfo); in classType()
550 (void) AcquireImageColormap(image(),entries_,exceptionInfo); in colorMapSize()
570 TransformImageColorspace(image(),colorSpace_,exceptionInfo); in colorSpace()
583 SetImageColorspace(image(),colorSpace_,exceptionInfo); in colorSpaceType()
[all …]
DPixels.cpp27 _view=AcquireVirtualCacheView(image_.image(),exceptionInfo), in Pixels()
47 exceptionInfo); in get()
63 exceptionInfo); in getConst()
86 exceptionInfo); in set()
95 (void) SyncCacheViewAuthenticPixels(_view,exceptionInfo); in sync()
195 map_.c_str(),type_,_data,exceptionInfo); in init()
196 if (exceptionInfo->severity != MagickCore::UndefinedException) in init()
DImageRef.cpp25 _image=AcquireImage(_options->imageInfo(),exceptionInfo); in ImageRef()
136 property=GetImageProperty(_image,"Signature",exceptionInfo); in signature()
139 (void) SignatureImage(_image,exceptionInfo); in signature()
140 property=GetImageProperty(_image,"Signature",exceptionInfo); in signature()
/external/proguard/src/proguard/optimize/peephole/
DUnreachableExceptionRemover.java83 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
88 exceptionInfo.u2startPC, in visitExceptionInfo()
89 exceptionInfo.u2endPC)) in visitExceptionInfo()
92 exceptionInfo.u2endPC = exceptionInfo.u2startPC; in visitExceptionInfo()
96 … extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitExceptionInfo()
147 ExceptionInfo exceptionInfo = exceptionInfos[index]; in removeEmptyExceptions() local
148 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC) in removeEmptyExceptions()
150 exceptionInfos[newIndex++] = exceptionInfo; in removeEmptyExceptions()
DReachableCodeMarker.java183 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
186 if (!isReachable(exceptionInfo.u2handlerPC) && in visitExceptionInfo()
187 isReachable(exceptionInfo.u2startPC, exceptionInfo.u2endPC)) in visitExceptionInfo()
189 markCode(clazz, method, codeAttribute, exceptionInfo.u2handlerPC); in visitExceptionInfo()
DBranchTargetFinder.java627 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
629 int startPC = exceptionInfo.u2startPC; in visitExceptionInfo()
630 int endPC = exceptionInfo.u2endPC; in visitExceptionInfo()
631 int handlerPC = exceptionInfo.u2handlerPC; in visitExceptionInfo()
/external/proguard/src/proguard/classfile/editor/
DExceptionInfoAdder.java54 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
58 new ExceptionInfo(exceptionInfo.u2startPC, in visitExceptionInfo()
59 exceptionInfo.u2endPC, in visitExceptionInfo()
60 exceptionInfo.u2handlerPC, in visitExceptionInfo()
61 exceptionInfo.u2catchType == 0 ? 0 : in visitExceptionInfo()
62 constantAdder.addConstant(clazz, exceptionInfo.u2catchType)); in visitExceptionInfo()
DCodeAttributeComposer.java308 public void appendException(ExceptionInfo exceptionInfo) in appendException() argument
312 …print(" ", "Exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+excepti… in appendException()
316 visitExceptionInfo(null, null, null, exceptionInfo); in appendException()
320 …System.out.println(" -> ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo in appendException()
324 if (exceptionInfo.u2startPC == exceptionInfo.u2endPC) in appendException()
338 exceptionInfo); in appendException()
390 ExceptionInfo exceptionInfo = exceptionTable[index]; in endCodeFragment() local
393 int handlerPC = -exceptionInfo.u2handlerPC; in endCodeFragment()
398 exceptionInfo.u2handlerPC = newInstructionOffset(handlerPC); in endCodeFragment()
588 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
[all …]
DCodeAttributeEditor.java915 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
919 exceptionInfo.u2startPC = newInstructionOffset(exceptionInfo.u2startPC); in visitExceptionInfo()
920 exceptionInfo.u2endPC = newInstructionOffset(exceptionInfo.u2endPC); in visitExceptionInfo()
921 exceptionInfo.u2handlerPC = newInstructionOffset(exceptionInfo.u2handlerPC); in visitExceptionInfo()
1132 ExceptionInfo exceptionInfo = exceptionInfos[index]; in removeEmptyExceptions() local
1133 if (exceptionInfo.u2startPC < exceptionInfo.u2endPC) in removeEmptyExceptions()
1135 exceptionInfos[newIndex++] = exceptionInfo; in removeEmptyExceptions()
DConstantPoolRemapper.java495 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
497 if (exceptionInfo.u2catchType != 0) in visitExceptionInfo()
499 exceptionInfo.u2catchType = in visitExceptionInfo()
500 remapConstantIndex(exceptionInfo.u2catchType); in visitExceptionInfo()
/external/proguard/src/proguard/preverify/
DCodeSubroutineInliner.java346 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
348 int startPC = Math.max(exceptionInfo.u2startPC, clipStart); in visitExceptionInfo()
349 int endPC = Math.min(exceptionInfo.u2endPC, clipEnd); in visitExceptionInfo()
350 int handlerPC = exceptionInfo.u2handlerPC; in visitExceptionInfo()
351 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo()
363 … if (!exceptionInfo.isApplicable(offset + ((BranchInstruction)instruction).branchOffset)) in visitExceptionInfo()
384 if (startPC == exceptionInfo.u2startPC && in visitExceptionInfo()
385 endPC == exceptionInfo.u2endPC) in visitExceptionInfo()
391 …System.out.println(" Appending clipped exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.… in visitExceptionInfo()
/external/proguard/src/proguard/classfile/attribute/
DCodeAttribute.java166 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept() local
167 if (exceptionInfo.isApplicable(offset)) in exceptionsAccept()
169 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionInfo); in exceptionsAccept()
183 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept() local
184 if (exceptionInfo.isApplicable(startOffset, endOffset)) in exceptionsAccept()
186 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionInfo); in exceptionsAccept()
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h1977 exceptionInfo); in animateImages()
1994 exceptionInfo );
2046 MagickCore::MeanEvaluateOperator, exceptionInfo ); in averageImages()
2065 exceptionInfo); in coalesceImages()
2098 MagickCore::GetMagickList( "*", &number_formats, exceptionInfo );
2101 throwException(exceptionInfo);
2112 MagickCore::GetMagickInfo( coder_list[i], exceptionInfo );
2202 MagickCore::GetImageHistogram( image.constImage(), &colors, exceptionInfo ); in colorHistogram()
2239 image=CombineImages(first_->image(),colorspace_,exceptionInfo); in combineImages()
2252 static_cast<std::string>(geometry_).c_str(),exceptionInfo); in cropToTiles()
[all …]
/external/proguard/src/proguard/classfile/visitor/
DExceptionExcludedOffsetFilter.java57 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
59 if (!exceptionInfo.isApplicable(instructionOffset)) in visitExceptionInfo()
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitExceptionInfo()
DExceptionOffsetFilter.java57 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
59 if (exceptionInfo.isApplicable(instructionOffset)) in visitExceptionInfo()
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitExceptionInfo()
DExceptionRangeFilter.java61 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
63 if (exceptionInfo.isApplicable(startOffset, endOffset)) in visitExceptionInfo()
65 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitExceptionInfo()
DExceptionHandlerFilter.java61 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
63 int handlerPC = exceptionInfo.u2handlerPC; in visitExceptionInfo()
67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitExceptionInfo()
DExceptionHandlerConstantVisitor.java54 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
56 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo()
DExceptionCounter.java48 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
DClassPrinter.java774 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
776 println(visitorInfo(exceptionInfo) + in visitExceptionInfo()
778 exceptionInfo.u2startPC + " -> " + in visitExceptionInfo()
779 exceptionInfo.u2endPC + ": " + in visitExceptionInfo()
780 exceptionInfo.u2handlerPC + "):"); in visitExceptionInfo()
782 if (exceptionInfo.u2catchType != 0) in visitExceptionInfo()
784 clazz.constantPoolEntryAccept(exceptionInfo.u2catchType, this); in visitExceptionInfo()
/external/proguard/src/proguard/optimize/
DTailRecursionSimplifier.java224 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
226 codeAttributeComposer.appendException(new ExceptionInfo(exceptionInfo.u2startPC, in visitExceptionInfo()
227 exceptionInfo.u2endPC, in visitExceptionInfo()
228 exceptionInfo.u2handlerPC, in visitExceptionInfo()
229 exceptionInfo.u2catchType)); in visitExceptionInfo()
264 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
/external/proguard/src/proguard/optimize/evaluation/
DLivenessAnalyzer.java386 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
389 long alive = isAliveBefore[exceptionInfo.u2handlerPC];
393 int startOffset = exceptionInfo.u2startPC;
394 int endOffset = exceptionInfo.u2endPC;
DPartialEvaluator.java1030 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
1032 int startPC = exceptionInfo.u2startPC; in visitExceptionInfo()
1033 int endPC = exceptionInfo.u2endPC; in visitExceptionInfo()
1038 int handlerPC = exceptionInfo.u2handlerPC; in visitExceptionInfo()
1039 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo()
1102 …on for partial evaluation of exception ["+startPC +" -> "+endPC +": "+exceptionInfo.u2handlerPC+"]… in visitExceptionInfo()
/external/proguard/src/proguard/classfile/attribute/visitor/
DExceptionInfoVisitor.java36 …xceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo); in visitExceptionInfo() argument
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java432 ExceptionInfo exceptionInfo = new ExceptionInfo(); in visitCodeAttribute() local
433 visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); in visitCodeAttribute()
434 codeAttribute.exceptionTable[index] = exceptionInfo; in visitCodeAttribute()
632 …ExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) in visitExceptionInfo() argument
634 exceptionInfo.u2startPC = dataInput.readUnsignedShort(); in visitExceptionInfo()
635 exceptionInfo.u2endPC = dataInput.readUnsignedShort(); in visitExceptionInfo()
636 exceptionInfo.u2handlerPC = dataInput.readUnsignedShort(); in visitExceptionInfo()
637 exceptionInfo.u2catchType = dataInput.readUnsignedShort(); in visitExceptionInfo()

12