/external/webkit/JavaScriptCore/ |
D | ChangeLog-2009-06-16 | 111 * interpreter/Interpreter.cpp: 1085 * interpreter/Interpreter.h: Remove wtf from includes so that 1099 * interpreter/Interpreter.h: 1232 * interpreter/Interpreter.h: 1333 Inherits Interpreter class from FastAllocBase because it has been 1336 * interpreter/Interpreter.h: 1654 * interpreter/Interpreter.cpp: 1655 (JSC::Interpreter::privateExecute): 1656 * interpreter/Interpreter.h: 1724 * interpreter/Interpreter.cpp: [all …]
|
D | ChangeLog | 600 Revert r46643 since this breaks the Yarr::Interpreter running the v8 tests. 604 (JSC::Yarr::Interpreter::allocDisjunctionContext): 605 (JSC::Yarr::Interpreter::freeDisjunctionContext): 606 (JSC::Yarr::Interpreter::allocParenthesesDisjunctionContext): 607 (JSC::Yarr::Interpreter::freeParenthesesDisjunctionContext): 623 * interpreter/Interpreter.cpp 832 (JSC::Yarr::Interpreter::allocDisjunctionContext): 833 (JSC::Yarr::Interpreter::freeDisjunctionContext): 834 (JSC::Yarr::Interpreter::allocParenthesesDisjunctionContext): 835 (JSC::Yarr::Interpreter::freeParenthesesDisjunctionContext): [all …]
|
D | ChangeLog-2007-10-14 | 727 …as the Interpreter needs to be created after the global object. In this situation the initializat… 735 (JSGlobalContextCreate): Initialize the JSCallbackObject with the Interpreter's ExecState. 747 …(JSGlobalContextCreate): Specify jsNull() as the prototype and let Interpreter's constructor fix i… 3742 (KJS::Interpreter::init): 3743 (KJS::Interpreter::initGlobalObject): 4389 (KJS::Interpreter::mark): Removed boolean parameter, which was an incomplete 4496 Changed Interpreter cache of global constructors and prototypes from 4507 (KJS::Interpreter::init): 4508 (KJS::Interpreter::~Interpreter): 4509 (KJS::Interpreter::initGlobalObject): Moved Identifier::init() call to [all …]
|
D | DerivedSources.make | 75 docs/bytecode.html: make-bytecode-docs.pl Interpreter.cpp
|
D | ChangeLog-2003-10-25 | 417 (Interpreter::saveBuiltins): 418 (Interpreter::restoreBuiltins): 572 (Interpreter::evaluate): Log if the flag is on. Include filename in log output. 573 (Interpreter::shouldPrintExceptions): Check the global flag. 574 (Interpreter::setShouldPrintExceptions): Set the global flag. 703 (Interpreter::lockCount): 1047 * kjs/interpreter.cpp: (Interpreter::evaluate): Do #ifndef NDEBUG, not #if !NDEBUG. 1338 (Interpreter::evaluate): 1404 (Interpreter::lock): 1405 (Interpreter::unlock):
|
D | Android.mk | 69 interpreter/Interpreter.cpp \
|
D | JavaScriptCore.gypi | 103 'interpreter/Interpreter.cpp', 104 'interpreter/Interpreter.h',
|
/external/webkit/WebCore/bridge/ |
D | testqtbindings.cpp | 103 RefPtr<Interpreter> interp = new Interpreter(global); in main()
|
D | runtime_root.h | 40 class Interpreter; variable
|
D | testbindings.mm | 247 Interpreter interp; 286 } // end block, so that Interpreter and global get deleted
|
D | testbindings.cpp | 379 Interpreter interp; in main()
|
/external/webkit/JavaScriptCore/bytecode/ |
D | SamplingTool.h | 91 class Interpreter; variable 189 SamplingTool(Interpreter* interpreter) in SamplingTool() 256 Interpreter* m_interpreter;
|
/external/webkit/JavaScriptCore/runtime/ |
D | JSGlobalData.h | 51 class Interpreter; variable 125 Interpreter* interpreter;
|
D | JSGlobalData.cpp | 139 , interpreter(new Interpreter) in JSGlobalData()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionVa… in resolve() 120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& excepti… in resolveSkip() 153 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& excep… in resolveGlobal() 193 NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vPC) in resolveBase() 200 NEVER_INLINE bool Interpreter::resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSVal… in resolveBaseAndProperty() 236 NEVER_INLINE bool Interpreter::resolveBaseAndFunc(CallFrame* callFrame, Instruction* vPC, JSValue& … in resolveBaseAndFunc() 283 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterF… in slideRegisterWindowForCall() 338 NEVER_INLINE JSValue Interpreter::callEval(CallFrame* callFrame, RegisterFile* registerFile, Regist… in callEval() 366 Interpreter::Interpreter() in Interpreter() function in JSC::Interpreter 375 void Interpreter::dumpCallFrame(CallFrame* callFrame) in dumpCallFrame() [all …]
|
D | CallFrame.h | 34 class Interpreter; variable 85 Interpreter* interpreter() { return globalData().interpreter; } in interpreter()
|
D | Interpreter.h | 69 class Interpreter : public FastAllocBase { 73 Interpreter();
|
D | CachedCall.h | 63 Interpreter* m_interpreter;
|
/external/webkit/JavaScriptCore/wrec/ |
D | WREC.h | 42 class Interpreter; variable
|
/external/webkit/JavaScriptCore/yarr/ |
D | RegexInterpreter.cpp | 42 class Interpreter { class 1239 …Interpreter(BytecodePattern* pattern, int* output, const UChar* inputChar, unsigned start, unsigne… in Interpreter() function in JSC::Yarr::Interpreter 1623 return Interpreter(regex, output, input, start, length).interpret(); in interpretRegex() 1627 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoPatternCharacter) == (RegexStackSpaceForBackTrackIn… 1628 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoCharacterClass) == (RegexStackSpaceForBackTrackInfo… 1629 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoBackReference) == (RegexStackSpaceForBackTrackInfoB… 1630 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoAlternative) == (RegexStackSpaceForBackTrackInfoAlt… 1631 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoParentheticalAssertion) == (RegexStackSpaceForBackT… 1632 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoParenthesesOnce) == (RegexStackSpaceForBackTrackInf… 1633 COMPILE_ASSERT(sizeof(Interpreter::BackTrackInfoParentheses) == (RegexStackSpaceForBackTrackInfoPar…
|
/external/webkit/WebCore/bindings/objc/ |
D | DOMInternal.mm | 120 // Dig up Interpreter and ExecState.
|
/external/webkit/JavaScriptGlue/ |
D | ChangeLog | 607 (JSRun::CheckSyntax): Provide a SourceCode to the Interpreter, since 1197 member access from Interpreter to JSGlobalObject. Replaced JSInterpreter 1216 Interpreter to JSGlobalObject. 1230 Modified to follow new JSGlobalObject/Interpreter ownership rules 1251 (getThreadGlobalExecState): Set the global object on the Interpreter before using it. 1279 Update for changes in Interpreter method signatures. 1665 - Updated JSInterpreter to work with Interpreter ref-counting in JavaScriptCore. 1744 - JSGlue part of merging InterpreterImp into Interpreter. 1968 * JSRun.cpp: (JSRun::Evaluate): Updated for change to Interpreter::evaluate.
|
/external/webkit/WebCore/plugins/qt/ |
D | PluginViewQt.cpp | 67 using JSC::Interpreter;
|
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/ |
D | JavaScriptCore_debug.def | 212 ?retrieveCaller@Interpreter@JSC@@QBE?AVJSValue@2@PAVExecState@2@PAVInternalFunction@2@@Z 213 ?retrieveLastCaller@Interpreter@JSC@@QBEXPAVExecState@2@AAH1AAVUString@2@AAVJSValue@2@@Z
|
D | JavaScriptCore.def | 214 ?retrieveCaller@Interpreter@JSC@@QBE?AVJSValue@2@PAVExecState@2@PAVInternalFunction@2@@Z 215 ?retrieveLastCaller@Interpreter@JSC@@QBEXPAVExecState@2@AAH1AAVUString@2@AAVJSValue@2@@Z
|