Lines Matching full:trace
176 // stack trace.
177 const char kStackTraceMarker[] = "\nStack trace:\n";
749 // Returns the current OS stack trace as an std::string.
758 // trace but Bar() and CurrentOsStackTraceExceptTop() won't.
1846 ""); // No stack trace, either.
3260 // arbitrarily long test failure message and stack trace.
3327 // trace stack maintained by Google Test.
3330 TraceInfo trace;
3331 trace.file = file;
3332 trace.line = line;
3333 trace.message = message.GetString();
3335 UnitTest::GetInstance()->PushGTestTrace(trace);
3347 // Returns the current OS stack trace as an std::string. Parameters:
3350 // in the trace.
3586 msg << "\n" << GTEST_NAME_ << " trace:";
3590 const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1];
3591 msg << "\n" << internal::FormatFileLocation(trace.file, trace.line)
3592 << " " << trace.message;
3748 // Pushes a trace defined by SCOPED_TRACE() on to the per-thread
3749 // Google Test trace stack.
3750 void UnitTest::PushGTestTrace(const internal::TraceInfo& trace)
3753 impl_->gtest_trace_stack().push_back(trace);
3756 // Pops a trace from the per-thread Google Test trace stack.
4279 // Sets the OS stack trace getter.
4281 // Does nothing if the input and the current OS stack trace getter are
4292 // Returns the current OS stack trace getter if it is not NULL;
4336 // Returns the current OS stack trace as an std::string.
4345 // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.