/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
JavaScriptCallFrame.cpp | 39 JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) 42 , m_callFrame(m_isolate, callFrame) 125 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); 126 v8::Handle<v8::Function> stepInPositions = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "stepInPositions"))); 127 v8::Handle<v8::Value> result = stepInPositions->Call(callFrame, 0, 0); 148 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); 149 v8::Handle<v8::Function> evalFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "evaluate"))); 151 return evalFunction->Call(callFrame, 1, argv); 156 v8::Handle<v8::Object> callFrame = m_callFrame.newLocal(m_isolate); 157 v8::Handle<v8::Function> restartFunction = v8::Handle<v8::Function>::Cast(callFrame->Get(v8AtomicString(m_isolate, "restart"))) [all...] |
JavaScriptCallFrame.h | 47 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame) 49 return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame)); 73 JavaScriptCallFrame(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame);
|
ScriptCallStack.cpp | 79 PassRefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > ScriptCallStack::buildInspectorArray() const 81 RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create();
|
InjectedScriptSource.js | 624 * @param {Object} callFrame 627 wrapCallFrames: function(callFrame) 629 if (!callFrame) 635 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame)); 636 callFrame = callFrame.caller; 637 } while (callFrame); 653 var callFrame = this.callFrameForId(topCallFrame, callFrameId); 654 if (!callFrame) 656 return this._evaluateAndWrap(callFrame.evaluate, callFrame, expression, objectGroup, true, injectCommandLineAPI, returnByValue, generateP (…) [all...] |
ScriptCallFrame.cpp | 57 PassRefPtr<TypeBuilder::Console::CallFrame> ScriptCallFrame::buildInspectorObject() const 59 return TypeBuilder::Console::CallFrame::create()
|
ScriptCallStack.h | 55 PassRefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > buildInspectorArray() const;
|
InspectorDebuggerAgent.cpp | 52 using WebCore::TypeBuilder::Debugger::CallFrame; 438 *errorString = "Attempt to access callframe when debugger is not on pause"; 450 void InspectorDebuggerAgent::getBacktrace(ErrorString* errorString, RefPtr<Array<CallFrame> >& callFrames, RefPtr<StackTrace>& asyncStackTrace) 599 void InspectorDebuggerAgent::setScriptSource(ErrorString* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>& errorData, const String& scriptId, const String& newContent, const bool* const preview, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) 612 void InspectorDebuggerAgent::restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) 615 *errorString = "Attempt to access callframe when debugger is not on pause"; 738 *errorString = "Attempt to access callframe when debugger is not on pause"; 809 *errorString = "Attempt to access callframe when debugger is not on pause"; [all...] |
InjectedScript.cpp | 42 using WebCore::TypeBuilder::Debugger::CallFrame; 234 PassRefPtr<Array<CallFrame> > InjectedScript::wrapCallFrames(const ScriptValue& callFrames) 244 return Array<CallFrame>::runtimeCast(result); 245 return Array<CallFrame>::create();
|
InspectorDebuggerAgent.h | 102 virtual void getBacktrace(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >&, RefPtr<TypeBuilder::Debugger::StackTrace>&); 105 virtual void setScriptSource(ErrorString*, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, const String& scriptId, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<TypeBuilder::Debugger::StackTrace>& asyncStackTrace); 106 virtual void restartFrame(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<TypeBuilder::Debugger::StackTrace>& asyncStackTrace); 188 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > currentCallFrames();
|
ScriptCallFrame.h | 53 PassRefPtr<TypeBuilder::Console::CallFrame> buildInspectorObject() const;
|
InjectedScript.h | 88 PassRefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> > wrapCallFrames(const ScriptValue&);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ScopeChainSidebarPane.js | 41 * @param {?WebInspector.DebuggerModel.CallFrame} callFrame 43 update: function(callFrame) 47 if (!callFrame) { 68 var scopeChain = callFrame.scopeChain; 83 if (callFrame.this) 84 extraProperties.push(new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(callFrame.this))); 92 if (callFrame.returnValue) 93 extraProperties.push(new WebInspector.RemoteObjectProperty("<return>", WebInspector.RemoteObject.fromPayload(callFrame.returnValue))); 121 var scopeRef = declarativeScope ? new WebInspector.ScopeRef(i, callFrame.id, undefined) : undefined [all...] |
DebuggerModel.js | 409 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames 423 * @return {?Array.<!WebInspector.DebuggerModel.CallFrame>} 458 * @param {!Array.<!DebuggerAgent.CallFrame>} callFrames 569 * @param {?WebInspector.DebuggerModel.CallFrame} callFrame 571 setSelectedCallFrame: function(callFrame) 573 this._selectedCallFrame = callFrame; 577 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.CallFrameSelected, callFrame); 581 * @return {?WebInspector.DebuggerModel.CallFrame} 593 var callFrame = this.selectedCallFrame() [all...] |
CallStackSidebarPane.js | 52 * @param {?Array.<!WebInspector.DebuggerModel.CallFrame>} callFrames 80 * @param {!Array.<!WebInspector.DebuggerModel.CallFrame>} callFrames 149 * @param {!WebInspector.DebuggerModel.CallFrame} x 267 * @param {!WebInspector.DebuggerModel.CallFrame} callFrame 270 WebInspector.CallStackSidebarPane.Placard = function(callFrame, asyncPlacard) 272 WebInspector.Placard.call(this, callFrame.functionName || WebInspector.UIString("(anonymous function)"), ""); 273 callFrame.createLiveLocation(this._update.bind(this)); 274 this._callFrame = callFrame;
|
ConsoleMessage.js | 249 * @param {!ConsoleAgent.CallFrame} callFrame 252 _linkifyCallFrame: function(callFrame) 255 var lineNumber = callFrame.lineNumber ? callFrame.lineNumber - 1 : 0; 256 var columnNumber = callFrame.columnNumber ? callFrame.columnNumber - 1 : 0; 257 var rawLocation = new WebInspector.DebuggerModel.Location(callFrame.scriptId, lineNumber, columnNumber); [all...] |
Script.js | 141 * @param {function(?Protocol.Error, !DebuggerAgent.SetScriptSourceError=, !Array.<!DebuggerAgent.CallFrame>=, !DebuggerAgent.StackTrace=, boolean=)} callback 149 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames
|
JavaScriptSourceFrame.js | 465 * @param {!WebInspector.DebuggerModel.CallFrame} callFrame 467 setExecutionLine: function(lineNumber, callFrame) 470 this._executionCallFrame = callFrame; 475 callFrame.getStepIntoLocations(locationsCallback.bind(this)); 484 if (this._executionCallFrame !== callFrame || this._stepIntoMarkup) [all...] |
SourcesPanel.js | 648 var callFrame = WebInspector.debuggerModel.selectedCallFrame() 650 sourceFrame.setExecutionLine(uiLocation.lineNumber, callFrame); 673 var callFrame = event.data; 675 if (!callFrame) 678 this.sidebarPanes.scopechain.update(callFrame); 680 this.sidebarPanes.callstack.setSelectedCallFrame(callFrame); 681 callFrame.createLiveLocation(this._executionLineChanged.bind(this)); [all...] |
TimelinePresentationModel.js | [all...] |
/external/chromium_org/v8/test/webkit/ |
invalid-callframe-during-unwind.js | 24 description("Test to ensure we have a valid callframe midway through unwinding");
|
invalid-callframe-during-unwind-expected.txt | 24 Test to ensure we have a valid callframe midway through unwinding
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
DebuggerScript.js | 220 DebuggerScript.stepOverStatement = function(execState, callFrame) 222 var frameMirror = callFrame ? callFrame.frameMirror : undefined; 226 DebuggerScript.stepOutOfFunction = function(execState, callFrame) 228 var frameMirror = callFrame ? callFrame.frameMirror : undefined;
|
ScriptDebugServer.cpp | 224 v8::Handle<v8::Value> callFrame; 226 callFrame = v8::Undefined(m_isolate); 229 callFrame = impl->innerCallFrame(); 234 callFrame
|
/external/nist-sip/java/gov/nist/core/ |
LogWriter.java | 175 // String callFrame = "[" + ste[i].getFileName() + ":" 177 // pw.print(callFrame);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
ContentSecurityPolicy.cpp | [all...] |