Home
last modified time | relevance | path

Searched refs:exceptionType (Results 1 – 16 of 16) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DCatchHandlerList.java121 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/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DCatchMethodItem.java37 private final TypeIdItem exceptionType; field in CatchMethodItem
43 … CatchMethodItem(MethodDefinition.LabelCache labelCache, int codeAddress, TypeIdItem exceptionType, in CatchMethodItem() argument
46 this.exceptionType = exceptionType; in CatchMethodItem()
54 if (exceptionType == null) { in CatchMethodItem()
80 if (exceptionType == null) { in writeTo()
84 ReferenceFormatter.writeTypeReference(writer, exceptionType); in writeTo()
DMethodDefinition.java506 … handler.exceptionType, startAddress, endAddress, handler.getHandlerAddress()); in addTries()
/external/webkit/Source/JavaScriptCore/runtime/
DCompletion.cpp70 ComplType exceptionType = Throw; in evaluate() local
72 exceptionType = asObject(exception)->exceptionType(); in evaluate()
73 return Completion(exceptionType, exception); in evaluate()
DExceptionHelpers.cpp51 virtual ComplType exceptionType() const { return Interrupted; } in exceptionType() function in JSC::InterruptedExecutionError
68 virtual ComplType exceptionType() const { return Terminated; } in exceptionType() function in JSC::TerminatedExecutionError
DJSObject.h219 virtual ComplType exceptionType() const { return Throw; } in exceptionType() function
/external/doclava/src/com/google/doclava/
DThrowsTagInfo.java56 public TypeInfo exceptionType() { in exceptionType() method in ThrowsTagInfo
67 if (tags[i].exceptionType() != null) { in makeHDF()
68 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type"); in makeHDF()
/external/smali/dexlib/src/main/java/org/jf/dexlib/
DCodeItem.java991 public final TypeIdItem exceptionType; field in CodeItem.EncodedTypeAddrPair
1003 public EncodedTypeAddrPair(TypeIdItem exceptionType, int handlerAddress) { in EncodedTypeAddrPair() argument
1004 this.exceptionType = exceptionType; in EncodedTypeAddrPair()
1015 exceptionType = dexFile.TypeIdsSection.getItemByIndex(in.readUnsignedLeb128()); in EncodedTypeAddrPair()
1023 return Leb128Utils.unsignedLeb128Size(exceptionType.getIndex()) + in getSize()
1033 out.annotate("exception_type: " + exceptionType.getTypeDescriptor()); in writeTo()
1034 out.writeUnsignedLeb128(exceptionType.getIndex()); in writeTo()
1039 out.writeUnsignedLeb128(exceptionType.getIndex()); in writeTo()
1050 return exceptionType.hashCode() * 31 + handlerAddress; in hashCode()
1063 return exceptionType == other.exceptionType && handlerAddress == other.handlerAddress; in equals()
/external/javassist/src/main/javassist/
DCtBehavior.java984 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/javassist/src/main/javassist/bytecode/stackmap/
DMapMaker.java254 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/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DMethodAnalyzer.java1668 RegisterType exceptionType = null; in analyzeMoveException() local
1672 exceptionType = RegisterType.getRegisterType(RegisterType.Category.Reference, in analyzeMoveException()
1678 exceptionType = RegisterType.getRegisterTypeForTypeIdItem(handler.exceptionType) in analyzeMoveException()
1679 .merge(exceptionType); in analyzeMoveException()
1684 if (exceptionType == null) { in analyzeMoveException()
1688 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, exceptionType); in analyzeMoveException()
1699 RegisterType exceptionType = null; in verifyMoveException() local
1703 exceptionType = RegisterType.getRegisterType(RegisterType.Category.Reference, in verifyMoveException()
1709 exceptionType = RegisterType.getRegisterTypeForTypeIdItem(handler.exceptionType) in verifyMoveException()
1710 .merge(exceptionType); in verifyMoveException()
[all …]
/external/webkit/Source/WebCore/bindings/js/
DJSEventListener.cpp136 …ion() && exec->exception().isObject() && asObject(exec->exception())->exceptionType() == Terminate… in handleEvent()
DJSDOMBinding.cpp286 if (exception.isObject() && asObject(exception)->exceptionType() == Terminated) in reportException()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1400 llvm::Value *exceptionType = namedValues["exceptTypeToThrow"]; in createThrowExceptionFunction() local
1407 builder.CreateCall(&nativeThrowFunct, exceptionType); in createThrowExceptionFunction()
1419 *exceptionType, in createThrowExceptionFunction()
1428 llvm::SwitchInst *theSwitch = builder.CreateSwitch(exceptionType, in createThrowExceptionFunction()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp668 ComplType exceptionType = exception->exceptionType(); in throwException() local
669 isInterrupt = exceptionType == Interrupted || exceptionType == Terminated; in throwException()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2010-05-244896 (JSC::InterruptedExecutionError::exceptionType):
4898 (JSC::TerminatedExecutionError::exceptionType):
4909 (JSC::JSObject::exceptionType):