Searched refs:exceptionType (Results 1 - 17 of 17) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCatchMethodItem.java37 private final TypeIdItem exceptionType; field in class:CatchMethodItem
43 public CatchMethodItem(MethodDefinition.LabelCache labelCache, int codeAddress, TypeIdItem exceptionType, argument
46 this.exceptionType = exceptionType;
54 if (exceptionType == null) {
80 if (exceptionType == null) {
84 ReferenceFormatter.writeTypeReference(writer, exceptionType);
H A DMethodDefinition.java506 handler.exceptionType, startAddress, endAddress, handler.getHandlerAddress());
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchHandlerList.java118 * @param exceptionType {@code non-null;} type of exception handled
121 public void set(int n, CstType exceptionType, int handler) { argument
122 set0(n, new Entry(exceptionType, handler));
169 private final CstType exceptionType; field in class:CatchHandlerList.Entry
177 * @param exceptionType {@code non-null;} type of exception handled
180 public Entry(CstType exceptionType, int handler) { argument
185 if (exceptionType == null) {
186 throw new NullPointerException("exceptionType == null");
190 this.exceptionType = exceptionType;
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DCompletion.cpp70 ComplType exceptionType = Throw; local
72 exceptionType = asObject(exception)->exceptionType();
73 return Completion(exceptionType, exception);
H A DExceptionHelpers.cpp51 virtual ComplType exceptionType() const { return Interrupted; } function in class:JSC::InterruptedExecutionError
68 virtual ComplType exceptionType() const { return Terminated; } function in class:JSC::TerminatedExecutionError
H A DJSObject.h219 virtual ComplType exceptionType() const { return Throw; } function in class:JSC::JSObject
/external/doclava/src/com/google/doclava/
H A DThrowsTagInfo.java56 public TypeInfo exceptionType() { method in class:ThrowsTagInfo
67 if (tags[i].exceptionType() != null) {
68 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type");
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DCodeItem.java991 public final TypeIdItem exceptionType; field in class:CodeItem.EncodedTypeAddrPair
1000 * @param exceptionType the type of the <code>Exception</code> that this handler handles
1003 public EncodedTypeAddrPair(TypeIdItem exceptionType, int handlerAddress) { argument
1004 this.exceptionType = exceptionType;
1015 exceptionType = dexFile.TypeIdsSection.getItemByIndex(in.readUnsignedLeb128());
1023 return Leb128Utils.unsignedLeb128Size(exceptionType.getIndex()) +
1033 out.annotate("exception_type: " + exceptionType.getTypeDescriptor());
1034 out.writeUnsignedLeb128(exceptionType.getIndex());
1039 out.writeUnsignedLeb128(exceptionType
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java254 private void recordStackMap(TypedBlock target, int exceptionType) argument
258 if (exceptionType == 0)
261 type = cpool.getClassInfo(exceptionType);
/external/webkit/Source/WebCore/bindings/js/
H A DJSEventListener.cpp136 bool terminatorCausedException = (exec->hadException() && exec->exception().isObject() && asObject(exec->exception())->exceptionType() == Terminated);
H A DJSDOMBinding.cpp286 if (exception.isObject() && asObject(exception)->exceptionType() == Terminated)
/external/javassist/src/main/javassist/
H A DCtBehavior.java981 * @param exceptionType the type of the exception handled by the
984 public void addCatch(String src, CtClass exceptionType) argument
987 addCatch(src, exceptionType, "$e");
996 * @param exceptionType the type of the exception handled by the
1002 public void addCatch(String src, CtClass exceptionType, argument
1017 int var = jv.recordVariable(exceptionType, exceptionName);
1033 cp.addClassInfo(exceptionType));
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java1668 RegisterType exceptionType = null;
1672 exceptionType = RegisterType.getRegisterType(RegisterType.Category.Reference,
1678 exceptionType = RegisterType.getRegisterTypeForTypeIdItem(handler.exceptionType)
1679 .merge(exceptionType);
1684 if (exceptionType == null) {
1688 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, exceptionType);
1699 RegisterType exceptionType = null;
1703 exceptionType = RegisterType.getRegisterType(RegisterType.Category.Reference,
1709 exceptionType
[all...]
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1400 llvm::Value *exceptionType = namedValues["exceptTypeToThrow"]; local
1407 builder.CreateCall(&nativeThrowFunct, exceptionType);
1419 *exceptionType,
1428 llvm::SwitchInst *theSwitch = builder.CreateSwitch(exceptionType,
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp668 ComplType exceptionType = exception->exceptionType(); local
669 isInterrupt = exceptionType == Interrupted || exceptionType == Terminated;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 301 milliseconds