OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:exceptionValue
(Results
1 - 2
of
2
) sorted by null
/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/interpreter/
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
...]
Completed in 57 milliseconds