HomeSort by relevance Sort by last modified time
    Searched refs:Interpreter (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/WebCore/ForwardingHeaders/interpreter/
Interpreter.h 3 #include <JavaScriptCore/Interpreter.h>
  /external/webkit/JavaScriptCore/wrec/
WREC.h 42 class Interpreter;
  /external/webkit/WebCore/bridge/
runtime_root.h 42 class Interpreter;
testqtbindings.cpp 30 #include "interpreter.h"
96 // create interpreter w/ global object
99 // create interpreter
100 RefPtr<Interpreter> interp = new Interpreter(global);
134 } // end block, so that Interpreter and global get deleted
testbindings.mm 33 #include "interpreter.h"
243 // create interpreter w/ global object
245 Interpreter interp;
284 } // end block, so that Interpreter and global get deleted
testbindings.cpp 26 #include "interpreter.h"
375 // create interpreter w/ global object
377 Interpreter interp;
416 } // end block, so that Interpreter and global get deleted
  /external/webkit/JavaScriptCore/runtime/
JSGlobalData.h 54 class Interpreter;
151 Interpreter* interpreter; member in class:JSC::JSGlobalData
JSGlobalData.cpp 37 #include "Interpreter.h"
134 , interpreter(new Interpreter)
160 delete interpreter;
163 interpreter = 0;
269 interpreter->startSampling();
274 interpreter->stopSampling();
279 interpreter->dumpSampleData(exec);
  /external/webkit/JavaScriptCore/interpreter/
CachedCall.h 32 #include "Interpreter.h"
39 , m_interpreter(callFrame->interpreter())
71 Interpreter* m_interpreter;
CallFrame.h 34 class Interpreter;
90 Interpreter* interpreter() { return globalData().interpreter; } function in class:JSC::ExecState
Interpreter.h 69 class Interpreter : public FastAllocBase {
73 Interpreter();
126 #if USE(INTERPRETER)
Interpreter.cpp 31 #include "Interpreter.h"
91 #if USE(INTERPRETER)
92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
153 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
193 NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vPC)
200 NEVER_INLINE bool Interpreter::resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
236 #endif // USE(INTERPRETER)
238 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterFile* registerFile, CallFrame* callFrame, size_t registerOffset, int argc)
275 #if USE(INTERPRETER)
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptCallStack.cpp 34 #include <interpreter/CallFrame.h>
35 #include <interpreter/Interpreter.h>
55 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, urlString, function);
94 JSValue func = m_exec->interpreter()->retrieveCaller(m_exec, m_caller);
99 func = m_exec->interpreter()->retrieveCaller(m_exec, internalFunction);
WorkerScriptController.cpp 41 #include <interpreter/Interpreter.h>
144 // It is not critical for Interpreter::m_timeoutTime to be synchronized, we just rely on it reaching the worker thread's processor sooner or later.
JSWorkerContextCustom.cpp 46 #include <interpreter/Interpreter.h>
117 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
JSXMLHttpRequestCustom.cpp 46 #include <interpreter/Interpreter.h>
122 exec->interpreter()->retrieveLastCaller(exec, signedLineNumber, sourceID, sourceURL, function);
  /external/webkit/JavaScriptCore/bytecode/
SamplingTool.h 93 class Interpreter;
191 SamplingTool(Interpreter* interpreter)
192 : m_interpreter(interpreter)
258 Interpreter* m_interpreter;
CodeBlock.cpp 35 #include "Interpreter.h"
212 OpcodeID currentOpcode = exec->interpreter()->getOpcodeID(instructions[i].u.opcode);
285 Interpreter* interpreter = m_globalData->interpreter; local
288 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id)) {
292 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_self)) {
296 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_proto)) {
300 if (vPC[0].u.opcode == interpreter->getOpcode(op_put_by_id_transition)) {
304 if (vPC[0].u.opcode == interpreter->getOpcode(op_get_by_id_chain))
1356 Interpreter* interpreter = m_globalData->interpreter; local
1401 Interpreter* interpreter = m_globalData->interpreter; local
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexInterpreter.cpp 42 class Interpreter {
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 44 interpreter/CallFrame.cpp \
45 interpreter/Interpreter.cpp \
46 interpreter/RegisterFile.cpp \
  /external/webkit/WebCore/plugins/symbian/
PluginViewSymbian.cpp 65 using JSC::Interpreter;
  /dalvik/vm/interp/
Interp.c 18 * Main interpreter entry point and support functions.
20 * The entry point selects the "standard" or "debug" interpreter and
21 * facilitates switching between them. The standard interpreter may
191 * check in the interpreter results in an exception being thrown.
    [all...]
  /external/webkit/WebCore/plugins/mac/
PluginViewMac.cpp 71 using JSC::Interpreter;
  /external/webkit/JavaScriptCore/jit/
JIT.h 44 #include "Interpreter.h"
60 class Interpreter;
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginViewGtk.cpp 78 using JSC::Interpreter;

Completed in 1422 milliseconds

1 2