Lines Matching defs:stop_reason_description
186 std::string stop_reason_description =
189 if (!stop_reason_description.size()) {
190 stop_reason_description = "Undefined behavior detected";
192 stop_reason_description[0] = toupper(stop_reason_description[0]);
193 for (unsigned I = 1; I < stop_reason_description.size(); ++I)
194 if (stop_reason_description[I] == '-')
195 stop_reason_description[I] = ' ';
197 return stop_reason_description;
332 std::string stop_reason_description = GetStopReasonDescription(info);
333 new_thread_sp->SetName(stop_reason_description.c_str());