Home
last modified time | relevance | path

Searched refs:stackTrace (Results 1 – 24 of 24) sorted by relevance

/third_party/node/deps/v8/src/inspector/
Dv8-stack-trace-impl.cc89 std::unique_ptr<protocol::Runtime::StackTrace> stackTrace = in buildInspectorObjectCommon() local
93 if (!description.isEmpty()) stackTrace->setDescription(description); in buildInspectorObjectCommon()
96 stackTrace->setParent( in buildInspectorObjectCommon()
99 stackTrace->setParentId( in buildInspectorObjectCommon()
107 stackTrace->setParentId( in buildInspectorObjectCommon()
114 return stackTrace; in buildInspectorObjectCommon()
336 String16Builder stackTrace; in toString() local
339 stackTrace.append("\n at " + (frame.functionName().length() in toString()
342 stackTrace.append(" ("); in toString()
343 stackTrace.append(frame.sourceURL()); in toString()
[all …]
Dv8-console-message.cc213 std::unique_ptr<V8StackTraceImpl> stackTrace, in setLocation() argument
223 m_stackTrace = std::move(stackTrace); in setLocation()
367 std::unique_ptr<protocol::Runtime::StackTrace> stackTrace; in reportToFrontend() local
374 stackTrace = in reportToFrontend()
378 stackTrace = in reportToFrontend()
385 m_timestamp, std::move(stackTrace), std::move(consoleContext)); in reportToFrontend()
433 std::unique_ptr<V8StackTraceImpl> stackTrace) { in createForConsoleAPI() argument
438 if (stackTrace && !stackTrace->isEmpty()) { in createForConsoleAPI()
439 message->m_url = toString16(stackTrace->topSourceURL()); in createForConsoleAPI()
440 message->m_lineNumber = stackTrace->topLineNumber(); in createForConsoleAPI()
[all …]
Dv8-profiler-agent-impl.cc148 auto stackTrace = V8StackTraceImpl::capture(inspector->debugger(), 1); in currentDebugLocation() local
149 CHECK(stackTrace); in currentDebugLocation()
150 CHECK(!stackTrace->isEmpty()); in currentDebugLocation()
152 .setScriptId(String16::fromInteger(stackTrace->topScriptId())) in currentDebugLocation()
153 .setLineNumber(stackTrace->topLineNumber()) in currentDebugLocation()
154 .setColumnNumber(stackTrace->topColumnNumber()) in currentDebugLocation()
Dv8-stack-trace-impl.h85 bool isEqualIgnoringTopFrame(V8StackTraceImpl* stackTrace) const;
95 explicit StackFrameIterator(const V8StackTraceImpl* stackTrace);
Dv8-inspector-impl.cc144 v8::Local<v8::StackTrace> stackTrace) { in createStackTrace() argument
145 return m_debugger->createStackTrace(stackTrace); in createStackTrace()
265 std::unique_ptr<V8StackTrace> stackTrace, int scriptId) { in exceptionThrown() argument
269 static_cast<V8StackTraceImpl*>(stackTrace.release())); in exceptionThrown()
Dinjected-script.cc275 v8::Local<v8::StackTrace> stackTrace = in catchCallback() local
277 if (!stackTrace.IsEmpty()) { in catchCallback()
278 stack = m_inspector->debugger()->createStackTrace(stackTrace); in catchCallback()
824 v8::Local<v8::StackTrace> stackTrace = message->GetStackTrace(); in createExceptionDetails() local
825 if (!stackTrace.IsEmpty() && stackTrace->GetFrameCount() > 0) { in createExceptionDetails()
827 m_context->inspector()->debugger()->createStackTrace(stackTrace); in createExceptionDetails()
Dv8-console.cc297 std::unique_ptr<V8StackTraceImpl> stackTrace = in identifierFromTitleOrStackTrace() local
299 if (stackTrace && !stackTrace->isEmpty()) { in identifierFromTitleOrStackTrace()
300 identifier = toString16(stackTrace->topSourceURL()) + ":" + in identifierFromTitleOrStackTrace()
301 String16::fromInteger(stackTrace->topLineNumber()); in identifierFromTitleOrStackTrace()
Dv8-debugger-agent-impl.cc1649 std::unique_ptr<protocol::Runtime::StackTrace> stackTrace = in didParseSource() local
1660 scriptRef->length(), std::move(stackTrace), std::move(codeOffset), in didParseSource()
1670 isModuleParam, scriptRef->length(), std::move(stackTrace), in didParseSource()
/third_party/node/lib/internal/assert/
Dcalltracker.js32 #stackTrace; field in CallTrackerContext
33 constructor({ expected, stackTrace, name }) { property
36 this.#stackTrace = stackTrace;
66 stack: this.#stackTrace,
112 stackTrace: new Error(), property
/third_party/cef/libcef_dll/cpptoc/
Drender_process_handler_cpptoc.cc161 struct _cef_v8stack_trace_t* stackTrace) { in render_process_handler_on_uncaught_exception() argument
184 DCHECK(stackTrace); in render_process_handler_on_uncaught_exception()
185 if (!stackTrace) in render_process_handler_on_uncaught_exception()
192 CefV8StackTraceCToCpp::Wrap(stackTrace)); in render_process_handler_on_uncaught_exception()
/third_party/cef/libcef_dll/ctocpp/
Drender_process_handler_ctocpp.cc160 CefRefPtr<CefV8StackTrace> stackTrace) { in OnUncaughtException() argument
184 DCHECK(stackTrace.get()); in OnUncaughtException()
185 if (!stackTrace.get()) in OnUncaughtException()
192 CefV8StackTraceCppToC::Wrap(stackTrace)); in OnUncaughtException()
Drender_process_handler_ctocpp.h53 CefRefPtr<CefV8StackTrace> stackTrace) override;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java263 String stackTrace = os.toString(); in run() local
264 … showError(errorMessage + " Stack trace: " + stackTrace.substring(0, 500)); in run()
277 String stackTrace = os.toString(); in run()
278 … showError("MAJOR ERROR: " + e.toString() + " Stack trace: " + stackTrace.substring(0,500)); in run()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDataDrivenNumberFormatTestUtility.java260 String stackTrace = os.toString(); in run() local
261 … showError(errorMessage + " Stack trace: " + stackTrace.substring(0, 500)); in run()
274 String stackTrace = os.toString(); in run()
275 … showError("MAJOR ERROR: " + e.toString() + " Stack trace: " + stackTrace.substring(0,500)); in run()
/third_party/cef/tests/shared/renderer/
Dclient_app_renderer.cc65 CefRefPtr<CefV8StackTrace> stackTrace) { in OnUncaughtException() argument
69 stackTrace); in OnUncaughtException()
Dclient_app_renderer.h52 CefRefPtr<CefV8StackTrace> stackTrace) {} in OnUncaughtException() argument
103 CefRefPtr<CefV8StackTrace> stackTrace) override;
/third_party/node/test/parallel/
Dtest-inspector-console-top-frame.js22 topFrame = (notification.params.stackTrace.callFrames[0]);
/third_party/cef/include/capi/
Dcef_render_process_handler_capi.h135 struct _cef_v8stack_trace_t* stackTrace);
/third_party/cef/include/
Dcef_render_process_handler.h120 CefRefPtr<CefV8StackTrace> stackTrace) {} in OnUncaughtException() argument
/third_party/cef/libcef/renderer/
Dv8_impl.cc789 CefRefPtr<CefV8StackTrace> stackTrace = in MessageListenerCallbackImpl() local
798 exception, stackTrace); in MessageListenerCallbackImpl()
2468 v8::Local<v8::StackTrace> stackTrace = v8::StackTrace::CurrentStackTrace( in GetCurrent() local
2470 if (stackTrace.IsEmpty()) in GetCurrent()
2472 return new CefV8StackTraceImpl(isolate, stackTrace); in GetCurrent()
/third_party/node/deps/v8/include/
Djs_protocol.pdl256 Runtime.StackTrace stackTrace
570 experimental optional Runtime.StackTrace stackTrace
611 experimental optional Runtime.StackTrace stackTrace
1245 optional StackTrace stackTrace
1594 # Note that the stackTrace portion of the resulting exceptionDetails will
1643 # chain can be retrieved using `Debugger.getStackTrace` and `stackTrace.parentId` field.
1644 optional StackTrace stackTrace
/third_party/cef/tests/ceftests/
Dv8_unittest.cc2651 CefRefPtr<CefV8StackTrace> stackTrace) override { in OnUncaughtException() argument
2661 for (int i = 0; i < stackTrace->GetFrameCount(); ++i) { in OnUncaughtException()
2663 << stackTrace->GetFrame(i)->GetFunctionName().ToString() in OnUncaughtException()
2665 << stackTrace->GetFrame(i)->GetScriptName().ToString() in OnUncaughtException()
2667 << stackTrace->GetFrame(i)->GetLineNumber() << "\n"; in OnUncaughtException()
/third_party/node/deps/v8/src/api/
Dapi.cc3021 auto stackTrace = i::Handle<i::FixedArray>::cast(stackFramesObj); in GetStackTrace() local
3022 return scope.Escape(Utils::StackTraceToLocal(stackTrace)); in GetStackTrace()
3169 i::Handle<i::FixedArray> stackTrace = in CurrentStackTrace() local
3171 return Utils::StackTraceToLocal(stackTrace); in CurrentStackTrace()
/third_party/libevdev/doc/html/
Djquery.js2 …ed.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.De…