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

1 2

  /external/webkit/Source/WebCore/bindings/js/
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...]
JavaScriptCallFrame.cpp 59 JSC::ScopeChainNode* JavaScriptCallFrame::scopeChain() const
64 return m_debuggerCallFrame.scopeChain();
JavaScriptCallFrame.h 72 JSC::ScopeChainNode* scopeChain() const;
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.h 52 ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); }
DebuggerCallFrame.cpp 98 JSValue result = globalData.interpreter->execute(eval, m_callFrame, thisObject(), 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...]
CachedCall.h 59 callFrame->setScopeChain(exec->scopeChain());
  /external/webkit/Source/JavaScriptCore/bytecode/
EvalCodeCache.h 48 EvalExecutable* get(ExecState* exec, ScriptExecutable* owner, bool inStrictContext, const UString& evalSource, ScopeChainNode* scopeChain, JSValue& exceptionValue)
52 if (!inStrictContext && evalSource.length() < maxCacheableSourceLength && (*scopeChain->begin())->isVariableObject())
57 exceptionValue = evalExecutable->compile(exec, scopeChain);
61 if (!inStrictContext && evalSource.length() < maxCacheableSourceLength && (*scopeChain->begin())->isVariableObject() && m_cacheMap.size() < maxCacheEntries)
  /external/webkit/Source/JavaScriptCore/runtime/
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);
CallData.h 56 ScopeChainNode* scopeChain;
ConstructData.h 56 ScopeChainNode* scopeChain;
Completion.cpp 50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue)
64 JSValue result = exec->interpreter()->execute(program, exec, scopeChain, thisObj);
FunctionConstructor.cpp 108 ScopeChainNode* scopeChain = new (exec) ScopeChainNode(0, globalObject, &globalData, globalObject, exec->globalThisValue());
109 return new (exec) JSFunction(exec, function, scopeChain);
JSFunction.h 62 void setScope(JSGlobalData& globalData, ScopeChainNode* scopeChain)
65 m_scopeChain.set(globalData, this, scopeChain);
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptDebugDelegate.mm 172 - (NSArray *)scopeChain
179 ScopeChainNode* scopeChain = _private->debuggerCallFrame->scopeChain();
180 if (!scopeChain->next) // global frame
185 ScopeChainIterator end = scopeChain->end();
186 for (ScopeChainIterator it = scopeChain->begin(); it != end; ++it) {
189 object = new (scopeChain->globalData) DebuggerActivation(*scopeChain->globalData, object);
  /external/webkit/Source/WebCore/inspector/
JavaScriptCallFrame.idl 47 readonly attribute [CustomGetter] Array scopeChain;
InjectedScriptSource.js 478 this.scopeChain = this._wrapScopeChain(callFrame);
497 var scopeChain = callFrame.scopeChain;
500 for (var i = 0; i < scopeChain.length; i++) {
502 scope.object = injectedScript._wrapObject(scopeChain[i], "backtrace");
523 var scopeChain = callFrame.scopeChain;
524 for (var i = 0; i < scopeChain.length; ++i) {
525 if (member in scopeChain[i])
  /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));
JavaScriptCallFrame.h 57 v8::Handle<v8::Value> scopeChain() const;
DebuggerScript.js 216 var scopeChain = [];
248 scopeChain.push(scopeObject);
261 "scopeChain": scopeChain,
  /external/webkit/Source/WebCore/inspector/front-end/
ScopeChainSidebarPane.js 60 var scopeChain = callFrame.scopeChain;
61 for (var i = 0; i < scopeChain.length; ++i) {
62 var scope = scopeChain[i];
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8JavaScriptCallFrameCustom.cpp 53 return impl->scopeChain();
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 36 #include "ScopeChain.h"
201 BytecodeGenerator::BytecodeGenerator(ProgramNode* programNode, ScopeChainNode* scopeChain, SymbolTable* symbolTable, ProgramCodeBlock* codeBlock)
202 : m_shouldEmitDebugHooks(scopeChain->globalObject->debugger())
203 , m_shouldEmitProfileHooks(scopeChain->globalObject->supportsProfiling())
204 , m_shouldEmitRichSourceInfo(scopeChain->globalObject->supportsRichSourceInfo())
205 , m_scopeChain(*scopeChain->globalData, scopeChain)
220 , m_globalData(scopeChain->globalData)
239 JSGlobalObject* globalObject = scopeChain->globalObject.get();
291 JSValue value = new (exec) JSFunction(exec, makeFunction(exec, function), scopeChain);
    [all...]

Completed in 417 milliseconds

1 2