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

/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/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/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1471 llvm::Value *exceptionType = namedValues["exceptTypeToThrow"]; local
1478 builder.CreateCall(&nativeThrowFunct, exceptionType);
1490 *exceptionType,
1499 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;

Completed in 190 milliseconds