HomeSort by relevance Sort by last modified time
    Searched defs:scopeChain (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/bindings/js/
JSJavaScriptCallFrameCustom.cpp 67 JSValue JSJavaScriptCallFrame::scopeChain(ExecState* exec) const
69 if (!impl()->scopeChain())
72 const ScopeChainNode* scopeChain = impl()->scopeChain();
73 ScopeChainIterator iter = scopeChain->begin();
74 ScopeChainIterator end = scopeChain->end();
  /external/webkit/WebCore/inspector/
JavaScriptCallFrame.cpp 58 const JSC::ScopeChainNode* JavaScriptCallFrame::scopeChain() const
63 return m_debuggerCallFrame.scopeChain();
  /external/webkit/JavaScriptCore/debugger/
DebuggerCallFrame.h 52 const ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); }
  /external/webkit/JavaScriptCore/interpreter/
CallFrameClosure.h 38 ScopeChainNode* scopeChain;
51 newCallFrame->setScopeChain(scopeChain);
Register.h 74 ScopeChainNode* scopeChain() const;
94 ScopeChainNode* scopeChain;
160 ALWAYS_INLINE Register& Register::operator=(ScopeChainNode* scopeChain)
162 u.scopeChain = scopeChain;
202 ALWAYS_INLINE ScopeChainNode* Register::scopeChain() const
204 return u.scopeChain;
CallFrame.h 28 #include "ScopeChain.h"
42 ScopeChainNode* scopeChain() const
44 ASSERT(this[RegisterFile::ScopeChain].Register::scopeChain());
45 return this[RegisterFile::ScopeChain].Register::scopeChain();
58 return scopeChain()->globalObject;
65 return scopeChain()->globalThis;
73 ASSERT(scopeChain()->globalData);
74 return *scopeChain()->globalData
    [all...]
Interpreter.cpp 84 static int depth(CodeBlock* codeBlock, ScopeChain& sc)
97 ScopeChainNode* scopeChain = callFrame->scopeChain();
98 ScopeChainIterator iter = scopeChain->begin();
99 ScopeChainIterator end = scopeChain->end();
128 ScopeChainNode* scopeChain = callFrame->scopeChain();
129 ScopeChainIterator iter = scopeChain->begin();
130 ScopeChainIterator end = scopeChain->end();
197 callFrame->r(dst) = JSValue(JSC::resolveBase(callFrame, callFrame->codeBlock()->identifier(property), callFrame->scopeChain()));
    [all...]
  /external/webkit/JavaScriptCore/runtime/
CallData.h 57 ScopeChainNode* scopeChain;
ConstructData.h 55 ScopeChainNode* scopeChain;
JSFunction.h 51 void setScope(const ScopeChain& scopeChain) { setScopeChain(scopeChain); }
52 ScopeChain& scope() { return scopeChain(); }
98 ScopeChain& scopeChain()
101 return *WTF::bitwise_cast<ScopeChain*>(m_data);
106 new (m_data) ScopeChain(NoScopeChain());
111 new (m_data) ScopeChain(sc)
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 824 JIT::compilePutByIdTransition(callFrame->scopeChain()->globalData, codeBlock, stubInfo, structure->previousID(), structure, slot.cachedOffset(), prototypeChain, returnAddress);
847 JIT::compilePatchGetArrayLength(callFrame->scopeChain()->globalData, codeBlock, returnAddress);
904 JIT::compileGetByIdProto(callFrame->scopeChain()->globalData, callFrame, codeBlock, stubInfo, structure, slotBaseObject->structure(), offset, returnAddress);
917 JIT::compileGetByIdChain(callFrame->scopeChain()->globalData, callFrame, codeBlock, stubInfo, structure, prototypeChain, count, offset, returnAddress);
    [all...]

Completed in 277 milliseconds