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

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
ScopeChainSidebarPane.js 68 var scopeChain = callFrame.scopeChain;
69 for (var i = 0; i < scopeChain.length; ++i) {
70 var scope = scopeChain[i];
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.idl 49 [Custom=Getter] readonly attribute object scopeChain;
JavaScriptCallFrame.h 64 v8::Handle<v8::Value> scopeChain() const;
JavaScriptCallFrame.cpp 112 v8::Handle<v8::Value> JavaScriptCallFrame::scopeChain() const
115 v8::Handle<v8::Function> func = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "scopeChain")));
116 v8::Handle<v8::Array> scopeChain = v8::Handle<v8::Array>::Cast(func->Call(callFrame, 0, 0));
117 v8::Handle<v8::Array> result = v8::Array::New(m_isolate, scopeChain->Length());
118 for (uint32_t i = 0; i < scopeChain->Length(); i++)
119 result->Set(i, scopeChain->Get(i));
InjectedScriptSource.js 472 details.scopeChain = scopes;
690 * @param {!Array.<!Object>=} scopeChain
693 _evaluateAndWrap: function(evalFunction, object, expression, objectGroup, isEvalOnCallFrame, injectCommandLineAPI, returnByValue, generatePreview, scopeChain)
695 var wrappedResult = this._evaluateOn(evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain);
729 * @param {!Array.<!Object>=} scopeChain
732 _evaluateOn: function(evalFunction, object, objectGroup, expression, isEvalOnCallFrame, injectCommandLineAPI, scopeChain)
739 var injectScopeChain = scopeChain && scopeChain.length && !("__scopeChainForEval" in inspectedWindow);
750 InjectedScriptHost.setNonEnumProperty(inspectedWindow, "__scopeChainForEval", scopeChain);
751 for (var i = 0; i < scopeChain.length; ++i)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8JavaScriptCallFrameCustom.cpp 54 v8SetReturnValue(info, impl->scopeChain());
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DebuggerScript.js 377 var scopeChain;
383 if (!scopeChain) {
384 scopeChain = [];
386 scopeChain.push(DebuggerScript._buildScopeObject(scopeTypes[i], scopeObjects[i]));
389 return scopeChain;
492 "scopeChain": lazyScopeChain,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DebuggerModel.js 67 /** @typedef {{location: ?WebInspector.DebuggerModel.Location, sourceURL: ?string, functionName: string, scopeChain: (Array.<!DebuggerAgent.Scope>|null)}} */
645 for (var i = 0; i < selectedCallFrame.scopeChain.length; ++i) {
646 var scope = selectedCallFrame.scopeChain[i];
697 callback({location: rawLocation, sourceURL: sourceURL, functionName: response.functionName, scopeChain: response.scopeChain || null});
945 get scopeChain()
947 return this._payload.scopeChain;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPropertiesSection.js 647 var scopeChain = response.scopeChain || [];
648 for (var i = 0; i < scopeChain.length; ++i) {
649 var scope = scopeChain[i];
    [all...]

Completed in 1760 milliseconds