/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | CatchHandlerList.java | 121 public void set(int n, CstType exceptionType, int handler) { in set() argument 122 set0(n, new Entry(exceptionType, handler)); in set() 169 private final CstType exceptionType; field in CatchHandlerList.Entry 180 public Entry(CstType exceptionType, int handler) { in Entry() argument 185 if (exceptionType == null) { in Entry() 190 this.exceptionType = exceptionType; in Entry() 196 return (handler * 31) + exceptionType.hashCode(); in hashCode() 217 return exceptionType.compareTo(other.exceptionType); in compareTo() 226 return exceptionType; in getExceptionType()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/ |
D | BaseExceptionHandler.java | 46 final String exceptionType = getExceptionType(); in getExceptionTypeReference() local 47 if (exceptionType == null) { in getExceptionTypeReference() 53 return exceptionType; in getExceptionTypeReference() 60 String exceptionType = getExceptionType(); 61 int hashCode = exceptionType==null?0:exceptionType.hashCode(); 78 String exceptionType = getExceptionType(); 79 if (exceptionType == null) { 88 res = exceptionType.compareTo(o.getExceptionType());
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
D | BuilderExceptionHandler.java | 39 @Nullable final BuilderTypeReference exceptionType; field in BuilderExceptionHandler 42 BuilderExceptionHandler(@Nullable BuilderTypeReference exceptionType, int handlerCodeAddress) { in BuilderExceptionHandler() argument 43 this.exceptionType = exceptionType; in BuilderExceptionHandler() 48 return exceptionType==null?null:exceptionType.getType(); in getExceptionType()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
D | BuilderExceptionHandler.java | 52 static BuilderExceptionHandler newExceptionHandler(@Nullable final TypeReference exceptionType, in newExceptionHandler() argument 54 if (exceptionType == null) { in newExceptionHandler() 59 return exceptionType.getType(); in newExceptionHandler() 67 return exceptionType; in newExceptionHandler() 84 static BuilderExceptionHandler newExceptionHandler(@Nullable final String exceptionType, 86 if (exceptionType == null) { 91 return exceptionType;
|
D | BuilderTryBlock.java | 50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType, in BuilderTryBlock() argument 54 this.exceptionHandler = BuilderExceptionHandler.newExceptionHandler(exceptionType, handler); in BuilderTryBlock() 57 …ic BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType, in BuilderTryBlock() argument 61 this.exceptionHandler = BuilderExceptionHandler.newExceptionHandler(exceptionType, handler); in BuilderTryBlock()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
D | CatchMethodItem.java | 39 private final String exceptionType; field in CatchMethodItem 46 … int codeAddress, @Nullable String exceptionType, int startAddress, int endAddress, in CatchMethodItem() argument 49 this.exceptionType = exceptionType; in CatchMethodItem() 57 if (exceptionType == null) { in CatchMethodItem() 83 if (exceptionType == null) { in writeTo() 87 writer.write(exceptionType); in writeTo()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableExceptionHandler.java | 43 @Nullable protected final String exceptionType; field in ImmutableExceptionHandler 46 public ImmutableExceptionHandler(@Nullable String exceptionType, in ImmutableExceptionHandler() argument 48 this.exceptionType = exceptionType; in ImmutableExceptionHandler() 61 @Nullable @Override public String getExceptionType() { return exceptionType; } in getExceptionType()
|
/external/doclava/src/com/google/doclava/ |
D | ThrowsTagInfo.java | 63 public TypeInfo exceptionType() { in exceptionType() method in ThrowsTagInfo 74 if (tags[i].exceptionType() != null) { in makeHDF() 75 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type"); in makeHDF()
|
/external/libcxxabi/src/ |
D | cxa_exception.hpp | 39 std::type_info *exceptionType; member 77 std::type_info *exceptionType; member
|
D | cxa_exception.cpp | 230 exception_header->exceptionType = tinfo; in __cxa_throw() 533 return exception_header->exceptionType; in __cxa_current_exception_type() 695 dep_exception_header->exceptionType = exception_header->exceptionType; in __cxa_rethrow_primary_exception()
|
D | cxa_default_handlers.cpp | 48 static_cast<const __shim_type_info*>(exception_header->exceptionType); in default_terminate_handler()
|
D | cxa_personality.cpp | 731 static_cast<const __shim_type_info*>(exception_header->exceptionType); in scan_eh_tab() 773 static_cast<const __shim_type_info*>(exception_header->exceptionType); in scan_eh_tab() 1270 static_cast<const __shim_type_info*>(new_exception_header->exceptionType); in __cxa_call_unexpected()
|
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/ |
D | InvocationTest.java | 172 private void assertException(Class<? extends Throwable> exceptionType, int index) { in assertException() argument 175 assertEquals(exceptionType, logRecord.getThrown().getClass()); in assertException()
|
/external/javassist/src/main/javassist/ |
D | CtBehavior.java | 984 public void addCatch(String src, CtClass exceptionType) in addCatch() argument 987 addCatch(src, exceptionType, "$e"); in addCatch() 1002 public void addCatch(String src, CtClass exceptionType, in addCatch() argument 1017 int var = jv.recordVariable(exceptionType, exceptionName); in addCatch() 1033 cp.addClassInfo(exceptionType)); in addCatch()
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Invokable.java | 134 TypeToken<? extends Throwable> exceptionType = (TypeToken<? extends Throwable>) in getExceptionTypes() local 136 builder.add(exceptionType); in getExceptionTypes()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | MapMaker.java | 254 private void recordStackMap(TypedBlock target, int exceptionType) in recordStackMap() argument 258 if (exceptionType == 0) in recordStackMap() 261 type = cpool.getClassInfo(exceptionType); in recordStackMap()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | MethodAnalyzer.java | 1039 RegisterType exceptionType = RegisterType.UNKNOWN_TYPE; 1047 exceptionType = RegisterType.getRegisterType(RegisterType.REFERENCE, 1050 … exceptionType = RegisterType.getRegisterType(RegisterType.REFERENCE, classPath.getClass(type)) 1051 .merge(exceptionType); 1057 if (exceptionType.category == RegisterType.UNKNOWN) { 1061 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, exceptionType);
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 1425 llvm::Value *exceptionType = namedValues["exceptTypeToThrow"]; in createThrowExceptionFunction() local 1432 builder.CreateCall(&nativeThrowFunct, exceptionType); in createThrowExceptionFunction() 1444 *exceptionType, in createThrowExceptionFunction() 1453 llvm::SwitchInst *theSwitch = builder.CreateSwitch(exceptionType, in createThrowExceptionFunction()
|