Home
last modified time | relevance | path

Searched refs:ComplType (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DCompletion.h34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated }; enum
42 Completion(ComplType type = Normal, JSValue value = JSValue())
48 ComplType complType() const { return m_type; } in complType()
54 ComplType m_type;
DExceptionHelpers.cpp51 virtual ComplType exceptionType() const { return Interrupted; } in exceptionType()
68 virtual ComplType exceptionType() const { return Terminated; } in exceptionType()
DCompletion.cpp70 ComplType exceptionType = Throw; in evaluate()
DJSObject.h219 virtual ComplType exceptionType() const { return Throw; } in exceptionType()
/external/webkit/Source/WebCore/bindings/js/
DWorkerScriptController.cpp130 ComplType completionType = comp.complType(); in evaluate()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNPRuntimeObjectMap.cpp199 ComplType completionType = completion.complType(); in evaluate()
/external/webkit/Source/WebCore/bridge/
DNP_jsobject.cpp280 ComplType type = completion.complType(); in _NPN_Evaluate()
/external/webkit/Source/WebCore/bindings/objc/
DWebScriptObject.mm339 ComplType type = completion.complType();
/external/webkit/Source/WebCore/bridge/jni/
Djni_jsobject.mm321 ComplType type = completion.complType();
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DNetscapePluginInstanceProxy.mm878 ComplType type = completion.complType();
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp668 ComplType exceptionType = exception->exceptionType(); in throwException()