Searched refs:ntrunc (Results 1 – 1 of 1) sorted by relevance
/external/bcc/src/cc/vendor/ |
D | tinyformat.hpp | 266 inline void formatTruncated(std::ostream& out, const T& value, int ntrunc) in formatTruncated() argument 271 out.write(result.c_str(), std::min(ntrunc, static_cast<int>(result.size()))); in formatTruncated() 274 inline void formatTruncated(std::ostream& out, type* value, int ntrunc) \ 277 while(len < ntrunc && value[len] != 0) \ 308 const char* fmtEnd, int ntrunc, const T& value) in formatValue() argument 330 else if(ntrunc >= 0) in formatValue() 334 detail::formatTruncated(out, value, ntrunc); in formatValue() 500 const char* fmtEnd, int ntrunc) const in format() 502 m_formatImpl(out, fmtBegin, fmtEnd, ntrunc, m_value); in format() 513 const char* fmtEnd, int ntrunc, const void* value) in formatImpl() argument [all …]
|