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

  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 51 const ClassInfo EvalExecutable::s_info = { "EvalExecutable", &ScriptExecutable::s_info, 0, 0 };
54 : ScriptExecutable(exec->globalData().evalExecutableStructure.get(), exec, source, inStrictContext)
62 const ClassInfo ProgramExecutable::s_info = { "ProgramExecutable", &ScriptExecutable::s_info, 0, 0 };
65 : ScriptExecutable(exec->globalData().programExecutableStructure.get(), exec, source, false)
73 const ClassInfo FunctionExecutable::s_info = { "FunctionExecutable", &ScriptExecutable::s_info, 0, 0 };
76 : ScriptExecutable(globalData->functionExecutableStructure.get(), globalData, source, inStrictContext)
88 : ScriptExecutable(exec->globalData().functionExecutableStructure.get(), exec, source, inStrictContext)
140 ScriptExecutable::markChildren(markStack);
226 ScriptExecutable::markChildren(markStack);
326 ScriptExecutable::markChildren(markStack)
    [all...]
Executable.h 149 class ScriptExecutable : public ExecutableBase {
151 ScriptExecutable(Structure* structure, JSGlobalData* globalData, const SourceCode& source, bool isInStrictContext)
165 ScriptExecutable(Structure* structure, ExecState* exec, const SourceCode& source, bool isInStrictContext)
206 class EvalExecutable : public ScriptExecutable {
238 static const unsigned StructureFlags = OverridesMarkChildren | ScriptExecutable::StructureFlags;
248 class ProgramExecutable : public ScriptExecutable {
285 static const unsigned StructureFlags = OverridesMarkChildren | ScriptExecutable::StructureFlags;
295 class FunctionExecutable : public ScriptExecutable {
384 static const unsigned StructureFlags = OverridesMarkChildren | ScriptExecutable::StructureFlags;
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 41 class ScriptExecutable;
98 ScriptSampleRecord(JSGlobalData& globalData, ScriptExecutable* executable)
116 Strong<ScriptExecutable> m_executable;
124 typedef WTF::HashMap<ScriptExecutable*, ScriptSampleRecord*> ScriptSampleRecordMap;
217 void notifyOfScope(ScriptExecutable* scope);
EvalCodeCache.h 48 EvalExecutable* get(ExecState* exec, ScriptExecutable* owner, bool inStrictContext, const UString& evalSource, ScopeChainNode* scopeChain, JSValue& exceptionValue)
CodeBlock.h 206 CodeBlock(ScriptExecutable* ownerExecutable, CodeType, JSGlobalObject*, PassRefPtr<SourceProvider>, unsigned sourceOffset, SymbolTable* symbolTable, bool isConstructor);
296 ScriptExecutable* ownerExecutable() const { return m_ownerExecutable.get(); }
492 WriteBarrier<ScriptExecutable> m_ownerExecutable;
570 GlobalCodeBlock(ScriptExecutable* ownerExecutable, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset)
SamplingTool.cpp 212 void SamplingTool::notifyOfScope(ScriptExecutable* script)
CodeBlock.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 61 milliseconds