Searched refs:oss (Results 1 – 11 of 11) sorted by relevance
66 std::ostringstream oss; in dumpMemoryAddresses() local67 oss << leak_info.total_memory << " bytes in " << count << " allocations\n"; in dumpMemoryAddresses()68 oss << " ABI: '" ABI_STRING "'" << "\n\n"; in dumpMemoryAddresses()83 oss << (e->size * e->allocations) in dumpMemoryAddresses()85 oss << backtrace_string(e->backtrace, leak_info.backtrace_size) << "\n"; in dumpMemoryAddresses()87 oss << "\n"; in dumpMemoryAddresses()89 return oss.str(); in dumpMemoryAddresses()
153 std::stringstream oss;154 oss.precision(gFloatPrecision);155 oss << value;156 str = oss.str();157 return !oss.fail() && !oss.bad();
41 std::ostringstream oss; in getElapsedTime() local42 oss << std::setfill('0') << std::setw(2) << hour << ":" << std::setw(2) << minutes << ":" in getElapsedTime()44 return oss.str(); in getElapsedTime()
444 std::stringstream oss; in writeDumpFooter() local445 oss << std::put_time(&finish_tm, "%Y-%m-%d %H:%M:%S"); in writeDumpFooter()448 elapsedDuration.count(), String8(serviceName).string(), oss.str().c_str()); in writeDumpFooter()
2039 std::ostringstream oss; oss << message; \2040 Json::throwLogicError(oss.str()); \2052 std::ostringstream oss; oss << message; \2053 assert(false && oss.str().c_str()); \
4187 std::ostringstream oss; in valueToQuotedString() local4188 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') in valueToQuotedString()4190 result += oss.str(); in valueToQuotedString()4265 std::ostringstream oss; in valueToQuotedStringN() local4266 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') in valueToQuotedStringN()4268 result += oss.str(); in valueToQuotedStringN()
2 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
115 ostringstream oss; in ExecuteTest() local116 msg.SerializePartialToOstream(&oss); in ExecuteTest()117 string proto = oss.str(); in ExecuteTest()
87 https://oss.sonatype.org/#stagingRepositories and find the repository, usually102 https://oss.sonatype.org/#stagingRepositories, verify that the staging
312 std::ostringstream oss; in RuntimeAbort() local313 oss << __FILE__ << ":" << line << ": " << msg; in RuntimeAbort()314 env->FatalError(oss.str().c_str()); in RuntimeAbort()