OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EvalExecutable
(Results
1 - 10
of
10
) 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)
50
EvalExecutable
*
evalExecutable
= 0;
53
evalExecutable
= m_cacheMap.get(evalSource.impl()).get();
55
if (!
evalExecutable
) {
56
evalExecutable
=
EvalExecutable
::create(exec, makeSource(evalSource), inStrictContext);
57
exceptionValue =
evalExecutable
->compile(exec, scopeChain);
62
m_cacheMap.set(evalSource.impl(), WriteBarrier<
EvalExecutable
>(exec->globalData(), owner,
evalExecutable
));
[
all
...]
CodeBlock.h
589
EvalCodeBlock(
EvalExecutable
* ownerExecutable, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, int baseScopeDepth)
/external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.cpp
92
EvalExecutable
* eval =
EvalExecutable
::create(m_callFrame, makeSource(script), m_callFrame->codeBlock()->isStrictMode());
Debugger.cpp
129
EvalExecutable
* eval =
EvalExecutable
::create(globalCallFrame, makeSource(script), false);
/external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h
44
class
EvalExecutable
;
100
JSValue execute(
EvalExecutable
* evalNode, CallFrame* exec, JSObject* thisObj, ScopeChainNode* scopeChain);
124
JSValue execute(
EvalExecutable
*, CallFrame*, JSObject* thisObject, int globalRegisterOffset, ScopeChainNode*);
Interpreter.cpp
406
EvalExecutable
* eval = codeBlock->evalCodeCache().get(callFrame, codeBlock->ownerExecutable(), codeBlock->isStrictMode(), programSource, scopeChain, exceptionValue);
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp
51
const ClassInfo
EvalExecutable
::s_info = { "
EvalExecutable
", &ScriptExecutable::s_info, 0, 0 };
53
EvalExecutable
::
EvalExecutable
(ExecState* exec, const SourceCode& source, bool inStrictContext)
58
EvalExecutable
::~
EvalExecutable
()
100
JSObject*
EvalExecutable
::compileInternal(ExecState* exec, ScopeChainNode* scopeChainNode)
138
void
EvalExecutable
::markChildren(MarkStack& markStack)
Executable.h
206
class
EvalExecutable
: public ScriptExecutable {
209
~
EvalExecutable
();
227
static
EvalExecutable
* create(ExecState* exec, const SourceCode& source, bool isInStrictContext) { return new (exec)
EvalExecutable
(exec, source, isInStrictContext); }
240
EvalExecutable
(ExecState*, const SourceCode&, bool);
JSGlobalObjectFunctions.cpp
452
EvalExecutable
* eval =
EvalExecutable
::create(exec, makeSource(s), false);
JSGlobalData.cpp
198
evalExecutableStructure.set(*this,
EvalExecutable
::createStructure(*this, jsNull()));
Completed in 1343 milliseconds