OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:asyncStackTrace
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptAsyncCallStack.cpp
12
PassRefPtrWillBeRawPtr<ScriptAsyncCallStack> ScriptAsyncCallStack::create(const String& description, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, PassRefPtrWillBeRawPtr<ScriptAsyncCallStack>
asyncStackTrace
)
14
return adoptRefWillBeNoop(new ScriptAsyncCallStack(description, callStack,
asyncStackTrace
));
17
ScriptAsyncCallStack::ScriptAsyncCallStack(const String& description, PassRefPtrWillBeRawPtr<ScriptCallStack> callStack, PassRefPtrWillBeRawPtr<ScriptAsyncCallStack>
asyncStackTrace
)
20
, m_asyncStackTrace(
asyncStackTrace
)
25
PassRefPtr<TypeBuilder::Console::
AsyncStackTrace
> ScriptAsyncCallStack::buildInspectorObject() const
27
RefPtr<TypeBuilder::Console::
AsyncStackTrace
> result = TypeBuilder::Console::
AsyncStackTrace
::create()
InspectorDebuggerAgent.h
121
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
) OVERRIDE FINAL;
122
virtual void restartFrame(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<TypeBuilder::Debugger::StackTrace>&
asyncStackTrace
) OVERRIDE FINAL;
InspectorDebuggerAgent.cpp
479
void InspectorDebuggerAgent::getBacktrace(ErrorString* errorString, RefPtr<Array<CallFrame> >& callFrames, RefPtr<StackTrace>&
asyncStackTrace
)
485
asyncStackTrace
= currentAsyncStackTrace();
645
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
)
651
asyncStackTrace
= currentAsyncStackTrace();
663
void InspectorDebuggerAgent::restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>&
asyncStackTrace
)
678
asyncStackTrace
= currentAsyncStackTrace();
[
all
...]
InspectorResourceAgent.cpp
568
RefPtrWillBeRawPtr<ScriptAsyncCallStack>
asyncStackTrace
= stackTrace->asyncCallStack();
569
if (
asyncStackTrace
)
570
initiatorObject->setAsyncStackTrace(
asyncStackTrace
->buildInspectorObject());
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ConsoleModel.js
188
* @param {!ConsoleAgent.
AsyncStackTrace
=}
asyncStackTrace
191
WebInspector.ConsoleMessage = function(target, source, level, messageText, type, url, line, column, requestId, parameters, stackTrace, timestamp, isOutdated, executionContextId,
asyncStackTrace
, scriptId)
210
this.
asyncStackTrace
=
asyncStackTrace
;
219
this.
asyncStackTrace
= initiator.
asyncStackTrace
;
309
this.
asyncStackTrace
,
325
var asyncTrace1 = this.
asyncStackTrace
;
326
var asyncTrace2 = msg.
asyncStackTrace
;
[
all
...]
DebuggerModel.js
393
* @param {!DebuggerAgent.StackTrace=}
asyncStackTrace
396
_didEditScriptSource: function(scriptId, newSource, callback, error, errorData, callFrames,
asyncStackTrace
, needsStepIn)
405
this._pausedScript(callFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds,
asyncStackTrace
);
448
* @param {!DebuggerAgent.StackTrace=}
asyncStackTrace
450
_pausedScript: function(callFrames, reason, auxData, breakpointIds,
asyncStackTrace
)
452
this._setDebuggerPausedDetails(new WebInspector.DebuggerPausedDetails(this.target(), callFrames, reason, auxData, breakpointIds,
asyncStackTrace
));
657
* @param {!DebuggerAgent.StackTrace=}
asyncStackTrace
659
callStackModified: function(newCallFrames, details,
asyncStackTrace
)
665
this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds,
asyncStackTrace
);
755
* @param {!DebuggerAgent.StackTrace=}
asyncStackTrace
[
all
...]
Script.js
181
* @param {!DebuggerAgent.StackTrace=}
asyncStackTrace
183
function didEditScriptSource(error, errorData, callFrames, debugData,
asyncStackTrace
)
189
callback(error, errorData, callFrames,
asyncStackTrace
, needsStepIn);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
CallStackSidebarPane.js
63
var
asyncStackTrace
= details.
asyncStackTrace
;
74
while (
asyncStackTrace
) {
75
var title = WebInspector.asyncStackTraceLabel(
asyncStackTrace
.description);
81
this._appendSidebarPlacards(
asyncStackTrace
.callFrames, asyncPlacard);
82
asyncStackTrace
=
asyncStackTrace
.
asyncStackTrace
;
/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
...]
Completed in 850 milliseconds