HomeSort by relevance Sort by last modified time
    Searched refs:exceptionValue (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/bytecode/
EvalCodeCache.h 48 EvalExecutable* get(ExecState* exec, ScriptExecutable* owner, bool inStrictContext, const UString& evalSource, ScopeChainNode* scopeChain, JSValue& exceptionValue)
57 exceptionValue = evalExecutable->compile(exec, scopeChain);
58 if (exceptionValue)
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 127 NEVER_INLINE bool resolve(CallFrame*, Instruction*, JSValue& exceptionValue);
128 NEVER_INLINE bool resolveSkip(CallFrame*, Instruction*, JSValue& exceptionValue);
129 NEVER_INLINE bool resolveGlobal(CallFrame*, Instruction*, JSValue& exceptionValue);
130 NEVER_INLINE bool resolveGlobalDynamic(CallFrame*, Instruction*, JSValue& exceptionValue);
132 NEVER_INLINE bool resolveBaseAndProperty(CallFrame*, Instruction*, JSValue& exceptionValue);
Interpreter.cpp 92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
109 exceptionValue = callFrame->globalData().exception;
110 if (exceptionValue)
116 exceptionValue = createUndefinedVariableError(callFrame, ident);
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
148 exceptionValue = callFrame->globalData().exception;
149 if (exceptionValue)
156 exceptionValue = createUndefinedVariableError(callFrame, ident);
160 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
186 exceptionValue = callFrame->globalData().exception
    [all...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 217 JSValue exceptionValue = exec->exception();
218 ASSERT(exceptionValue);
221 HandlerInfo* handler = exec->globalData().interpreter->throwException(exec, exceptionValue, vPCIndex);
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 292 milliseconds