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

  /external/webkit/Source/WebCore/bindings/js/
JavaScriptCallFrame.cpp 59 JSC::ScopeChainNode* JavaScriptCallFrame::scopeChain() const
64 return m_debuggerCallFrame.scopeChain();
JSJavaScriptCallFrameCustom.cpp 68 JSValue JSJavaScriptCallFrame::scopeChain(ExecState* exec) const
70 if (!impl()->scopeChain())
73 ScopeChainNode* scopeChain = impl()->scopeChain();
74 ScopeChainIterator iter = scopeChain->begin();
75 ScopeChainIterator end = scopeChain->end();
91 if (!impl()->scopeChain())
98 ScopeChainNode* scopeChain = impl()->scopeChain();
99 ScopeChainIterator end = scopeChain->end()
    [all...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.h 52 ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); }
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrameClosure.h 38 ScopeChainNode* scopeChain;
52 newCallFrame->setScopeChain(scopeChain);
CallFrame.h 43 ScopeChainNode* scopeChain() const
45 ASSERT(this[RegisterFile::ScopeChain].Register::scopeChain());
46 return this[RegisterFile::ScopeChain].Register::scopeChain();
102 void setScopeChain(ScopeChainNode* scopeChain) { static_cast<Register*>(this)[RegisterFile::ScopeChain] = scopeChain; }
104 ALWAYS_INLINE void init(CodeBlock* codeBlock, Instruction* vPC, ScopeChainNode* scopeChain,
111 setScopeChain(scopeChain);
    [all...]
Interpreter.cpp 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();
208 ScopeChainNode* scopeChain = callFrame->scopeChain();
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
CallData.h 56 ScopeChainNode* scopeChain;
ConstructData.h 56 ScopeChainNode* scopeChain;
FunctionConstructor.cpp 108 ScopeChainNode* scopeChain = new (exec) ScopeChainNode(0, globalObject, &globalData, globalObject, exec->globalThisValue());
109 return new (exec) JSFunction(exec, function, scopeChain);
ScopeChain.h 120 ASSERT(scopeChain()->globalData);
121 return *scopeChain()->globalData;
126 return scopeChain()->globalObject.get();
131 return scopeChain()->globalThis.get();
134 ALWAYS_INLINE ScopeChainNode* Register::scopeChain() const
139 ALWAYS_INLINE Register& Register::operator=(ScopeChainNode* scopeChain)
141 *this = JSValue(scopeChain);
  /external/webkit/Source/WebCore/bindings/v8/
JavaScriptCallFrame.cpp 101 v8::Handle<v8::Value> JavaScriptCallFrame::scopeChain() const
103 v8::Handle<v8::Array> scopeChain = v8::Handle<v8::Array>::Cast(m_callFrame.get()->Get(v8String("scopeChain")));
104 v8::Handle<v8::Array> result = v8::Array::New(scopeChain->Length());
105 for (uint32_t i = 0; i < scopeChain->Length(); i++)
106 result->Set(i, scopeChain->Get(i));
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 847 JIT::compilePutByIdTransition(callFrame->scopeChain()->globalData, codeBlock, stubInfo, structure->previousID(), structure, slot.cachedOffset(), prototypeChain, returnAddress, direct);
870 JIT::compilePatchGetArrayLength(callFrame->scopeChain()->globalData, codeBlock, returnAddress);
929 JIT::compileGetByIdProto(callFrame->scopeChain()->globalData, callFrame, codeBlock, stubInfo, structure, slotBaseObject->structure(), propertyName, slot, offset, returnAddress);
    [all...]

Completed in 283 milliseconds