/external/proguard/src/proguard/classfile/editor/ |
ExceptionInfoAdder.java | 54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 57 ExceptionInfo newExceptionInfo = 58 new ExceptionInfo(exceptionInfo.u2startPC, 59 exceptionInfo.u2endPC, 60 exceptionInfo.u2handlerPC, 61 exceptionInfo.u2catchType == 0 ? 0 : 62 constantAdder.addConstant(clazz, exceptionInfo.u2catchType));
|
CodeAttributeComposer.java | 79 private ExceptionInfo[] exceptionTable = new ExceptionInfo[ClassConstants.TYPICAL_EXCEPTION_TABLE_LENGTH]; 306 * @param exceptionInfo the exception to be appended. 308 public void appendException(ExceptionInfo exceptionInfo) 312 print(" ", "Exception ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]"); 316 visitExceptionInfo(null, null, null, exceptionInfo); 320 System.out.println(" -> ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]") [all...] |
CodeAttributeEditor.java | [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
UnreachableExceptionRemover.java | 83 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 88 exceptionInfo.u2startPC, 89 exceptionInfo.u2endPC)) 92 exceptionInfo.u2endPC = exceptionInfo.u2startPC; 96 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo); 140 private int removeEmptyExceptions(ExceptionInfo[] exceptionInfos, 147 ExceptionInfo exceptionInfo = exceptionInfos[index] [all...] |
ReachableCodeMarker.java | 183 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 186 if (!isReachable(exceptionInfo.u2handlerPC) && 187 isReachable(exceptionInfo.u2startPC, exceptionInfo.u2endPC)) 189 markCode(clazz, method, codeAttribute, exceptionInfo.u2handlerPC);
|
BranchTargetFinder.java | 627 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 629 int startPC = exceptionInfo.u2startPC; 630 int endPC = exceptionInfo.u2endPC; 631 int handlerPC = exceptionInfo.u2handlerPC;
|
/external/proguard/src/proguard/classfile/visitor/ |
ExceptionExcludedOffsetFilter.java | 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 59 if (!exceptionInfo.isApplicable(instructionOffset)) 61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
|
ExceptionHandlerFilter.java | 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 63 int handlerPC = exceptionInfo.u2handlerPC; 67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
|
ExceptionOffsetFilter.java | 57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 59 if (exceptionInfo.isApplicable(instructionOffset)) 61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
|
ExceptionRangeFilter.java | 61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 63 if (exceptionInfo.isApplicable(startOffset, endOffset)) 65 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
|
ExceptionHandlerConstantVisitor.java | 54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 56 int catchType = exceptionInfo.u2catchType;
|
ExceptionCounter.java | 48 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
|
ClassCleaner.java | 237 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 239 clean(exceptionInfo);
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
ExceptionInfoVisitor.java | 28 * <code>ExceptionInfo</code> objects. Note that there is only a single 29 * implementation of <code>ExceptionInfo</code>, such that this interface 36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
|
StackSizeComputer.java | 255 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 270 exceptionInfo.u2handlerPC);
|
/external/ImageMagick/Magick++/lib/ |
Image.cpp | 220 MagickTrue,exceptionInfo); 226 exceptionInfo); 310 SetImageAlpha(image(),OpaqueAlpha,exceptionInfo); 455 bbox=GetImageBoundingBox(constImage(),exceptionInfo); 477 SetImageDepth(image(),depth_,exceptionInfo); 489 channel_depth=GetImageDepth(constImage(),exceptionInfo); 508 SyncImage(image(),exceptionInfo); 550 (void) AcquireImageColormap(image(),entries_,exceptionInfo); 570 TransformImageColorspace(image(),colorSpace_,exceptionInfo); 583 SetImageColorspace(image(),colorSpace_,exceptionInfo); [all...] |
ImageRef.cpp | 25 _image=AcquireImage(_options->imageInfo(),exceptionInfo); 136 property=GetImageProperty(_image,"Signature",exceptionInfo); 139 (void) SignatureImage(_image,exceptionInfo); 140 property=GetImageProperty(_image,"Signature",exceptionInfo);
|
Pixels.cpp | 27 _view=AcquireVirtualCacheView(image_.image(),exceptionInfo), 47 exceptionInfo); 63 exceptionInfo); 86 exceptionInfo); 95 (void) SyncCacheViewAuthenticPixels(_view,exceptionInfo); 195 map_.c_str(),type_,_data,exceptionInfo); 196 if (exceptionInfo->severity != MagickCore::UndefinedException)
|
CoderInfo.cpp | 59 magickInfo=GetMagickInfo(name_.c_str(),exceptionInfo);
|
/external/proguard/src/proguard/preverify/ |
CodeSubroutineInliner.java | 346 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 348 int startPC = Math.max(exceptionInfo.u2startPC, clipStart); 349 int endPC = Math.min(exceptionInfo.u2endPC, clipEnd); 350 int handlerPC = exceptionInfo.u2handlerPC; 351 int catchType = exceptionInfo.u2catchType; 363 if (!exceptionInfo.isApplicable(offset + ((BranchInstruction)instruction).branchOffset)) 371 codeAttributeComposer.appendException(new ExceptionInfo(startPC, 384 if (startPC == exceptionInfo.u2startPC && 385 endPC == exceptionInfo.u2endPC [all...] |
/external/proguard/src/proguard/classfile/attribute/ |
CodeAttribute.java | 40 public ExceptionInfo[] exceptionTable; 62 ExceptionInfo[] exceptionTable, 152 // type of ExceptionInfo. 166 ExceptionInfo exceptionInfo = exceptionTable[index]; 167 if (exceptionInfo.isApplicable(offset)) 169 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionInfo); 183 ExceptionInfo exceptionInfo = exceptionTable[index]; 184 if (exceptionInfo.isApplicable(startOffset, endOffset) [all...] |
/external/ImageMagick/Magick++/lib/Magick++/ |
STL.h | [all...] |
/external/proguard/src/proguard/optimize/ |
TailRecursionSimplifier.java | 224 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 226 codeAttributeComposer.appendException(new ExceptionInfo(exceptionInfo.u2startPC, 227 exceptionInfo.u2endPC, 228 exceptionInfo.u2handlerPC, 229 exceptionInfo.u2catchType)); 264 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
|
/external/proguard/src/proguard/optimize/evaluation/ |
LivenessAnalyzer.java | 386 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) 389 long alive = isAliveBefore[exceptionInfo.u2handlerPC]; 393 int startOffset = exceptionInfo.u2startPC; 394 int endOffset = exceptionInfo.u2endPC;
|
/libcore/ojluni/src/main/java/java/lang/ |
ProcessBuilder.java | [all...] |