/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
AsyncCallStackTracker.cpp | 105 AsyncCallStackTracker::AsyncCallStack::AsyncCallStack(const String& description, const ScriptValue& callFrames) 107 , m_callFrames(callFrames) 138 void AsyncCallStackTracker::didInstallTimer(ExecutionContext* context, int timerId, bool singleShot, const ScriptValue& callFrames) 142 if (!validateCallFrames(callFrames)) 146 data->m_timerCallChains.set(timerId, createAsyncCallChain(singleShot ? setTimeoutName : setIntervalName, callFrames)); 180 void AsyncCallStackTracker::didRequestAnimationFrame(ExecutionContext* context, int callbackId, const ScriptValue& callFrames) 184 if (!validateCallFrames(callFrames)) 188 data->m_animationFrameCallChains.set(callbackId, createAsyncCallChain(requestAnimationFrameName, callFrames)); 213 void AsyncCallStackTracker::didEnqueueEvent(EventTarget* eventTarget, Event* event, const ScriptValue& callFrames) 217 if (!validateCallFrames(callFrames)) [all...] |
AsyncCallStackTracker.h | 62 ScriptValue callFrames() const { return m_callFrames; } 119 void didInstallTimer(ExecutionContext*, int timerId, bool singleShot, const ScriptValue& callFrames); 123 void didRequestAnimationFrame(ExecutionContext*, int callbackId, const ScriptValue& callFrames); 127 void didEnqueueEvent(EventTarget*, Event*, const ScriptValue& callFrames); 131 void willLoadXHR(XMLHttpRequest*, const ScriptValue& callFrames); 134 void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*, const ScriptValue& callFrames); 139 void didPostExecutionContextTask(ExecutionContext*, ExecutionContextTask*, const ScriptValue& callFrames); 143 void didEnqueueV8AsyncTask(ExecutionContext*, const String& eventName, int id, const ScriptValue& callFrames); 146 int traceAsyncOperationStarting(ExecutionContext*, const String& operationName, const ScriptValue& callFrames); 158 PassRefPtrWillBeRawPtr<AsyncCallChain> createAsyncCallChain(const String& description, const ScriptValue& callFrames); [all...] |
InjectedScript.h | 74 const ScriptValue& callFrames, 85 void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result); 86 void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions); 87 void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
|
ScriptDebugListener.h | 80 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0;
|
InjectedScript.cpp | 83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) 86 function.appendArgument(callFrames); 97 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result) 100 function.appendArgument(callFrames); 117 void InjectedScript::getStepInPositions(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::Location> >& positions) 120 function.appendArgument(callFrames); 137 void InjectedScript::setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr) 141 function.appendArgument(callFrames); 250 PassRefPtr<Array<CallFrame> > InjectedScript::wrapCallFrames(const ScriptValue& callFrames, int asyncOrdinal) 254 function.appendArgument(callFrames); [all...] |
InspectorDebuggerAgent.cpp | 479 void InspectorDebuggerAgent::getBacktrace(ErrorString* errorString, RefPtr<Array<CallFrame> >& callFrames, RefPtr<StackTrace>& asyncStackTrace) 484 callFrames = currentCallFrames(); [all...] |
InspectorDebuggerAgent.h | 221 virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) OVERRIDE FINAL;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
DebuggerModel.js | 392 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames 396 _didEditScriptSource: function(scriptId, newSource, callback, error, errorData, callFrames, asyncStackTrace, needsStepIn) 404 if (!error && callFrames && callFrames.length) 405 this._pausedScript(callFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds, asyncStackTrace); 412 get callFrames() 414 return this._debuggerPausedDetails ? this._debuggerPausedDetails.callFrames : null; 435 this.setSelectedCallFrame(debuggerPausedDetails.callFrames[0]); 444 * @param {!Array.<!DebuggerAgent.CallFrame>} callFrames 450 _pausedScript: function(callFrames, reason, auxData, breakpointIds, asyncStackTrace [all...] |
Script.js | 179 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames 183 function didEditScriptSource(error, errorData, callFrames, debugData, asyncStackTrace) 189 callback(error, errorData, callFrames, asyncStackTrace, needsStepIn);
|
ConsoleModel.js | 332 if (!this._isEqualStackTraces(asyncTrace1.callFrames, asyncTrace2.callFrames))
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
CallStackSidebarPane.js | 62 var callFrames = details.callFrames; 71 this._appendSidebarPlacards(callFrames); 81 this._appendSidebarPlacards(asyncStackTrace.callFrames, asyncPlacard); 103 * @param {!Array.<!WebInspector.DebuggerModel.CallFrame>} callFrames 106 _appendSidebarPlacards: function(callFrames, asyncPlacard) 109 for (var i = 0, n = callFrames.length; i < n; ++i) { 110 var callFrame = callFrames[i];
|
SourcesPanel.js | 262 if (details.callFrames.length) 263 WebInspector.debuggerWorkspaceBinding.createCallFrameLiveLocation(details.callFrames[0], didGetUILocation.bind(this)); 265 console.warn("ScriptsPanel paused, but callFrames.length is zero."); // TODO remove this once we understand this case better [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
V8Initializer.cpp | 115 Vector<ScriptCallFrame> callFrames; 116 callStack = ScriptCallStack::create(callFrames);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
NetworkPanel.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/ |
ConsoleViewMessage.js | [all...] |