OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProgramExecutable
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
Completion.cpp
42
ProgramExecutable
* program =
ProgramExecutable
::create(exec, source);
55
ProgramExecutable
* program =
ProgramExecutable
::create(exec, source);
Executable.cpp
62
const ClassInfo
ProgramExecutable
::s_info = { "
ProgramExecutable
", &ScriptExecutable::s_info, 0, 0 };
64
ProgramExecutable
::
ProgramExecutable
(ExecState* exec, const SourceCode& source)
69
ProgramExecutable
::~
ProgramExecutable
()
145
JSObject*
ProgramExecutable
::checkSyntax(ExecState* exec)
157
JSObject*
ProgramExecutable
::compileInternal(ExecState* exec, ScopeChainNode* scopeChainNode)
224
void
ProgramExecutable
::markChildren(MarkStack& markStack)
Executable.h
248
class
ProgramExecutable
: public ScriptExecutable {
250
static
ProgramExecutable
* create(ExecState* exec, const SourceCode& source)
252
return new (exec)
ProgramExecutable
(exec, source);
255
~
ProgramExecutable
();
287
ProgramExecutable
(ExecState*, const SourceCode&);
JSGlobalData.cpp
199
programExecutableStructure.set(*this,
ProgramExecutable
::createStructure(*this, jsNull()));
/external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h
48
class
ProgramExecutable
;
97
JSValue execute(
ProgramExecutable
*, CallFrame*, ScopeChainNode*, JSObject* thisObj);
Interpreter.cpp
728
JSValue Interpreter::execute(
ProgramExecutable
* program, CallFrame* callFrame, ScopeChainNode* scopeChain, JSObject* thisObj)
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h
581
ProgramCodeBlock(
ProgramExecutable
* ownerExecutable, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider)
Completed in 119 milliseconds