Lines Matching full:trace
161 // stack trace.
162 const char kStackTraceMarker[] = "\nStack trace:\n";
719 // Returns the current OS stack trace as a String.
728 // trace but Bar() and CurrentOsStackTraceExceptTop() won't.
1966 String()); // No stack trace, either.
3313 // trace stack maintained by Google Test.
3316 TraceInfo trace;
3317 trace.file = file;
3318 trace.line = line;
3319 trace.message = message.GetString();
3321 UnitTest::GetInstance()->PushGTestTrace(trace);
3333 // Returns the current OS stack trace as a String. Parameters:
3336 // in the trace.
3579 msg << "\n" << GTEST_NAME_ << " trace:";
3582 const internal::TraceInfo& trace =
3584 msg << "\n" << internal::FormatFileLocation(trace.file, trace.line)
3585 << " " << trace.message;
3743 // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
3744 // Google Test trace stack.
3746 void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) {
3748 impl_->gtest_trace_stack()->PushFront(trace);
3751 // Pops a trace from the per-thread Google Test trace stack.
4240 // Sets the OS stack trace getter.
4242 // Does nothing if the input and the current OS stack trace getter are
4253 // Returns the current OS stack trace getter if it is not NULL;
4323 // Returns the current OS stack trace as a String.
4332 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.