Home | History | Annotate | Download | only in strings

Lines Matching refs:SafeSPrintf

33 // SafeSPrintf() is a type-safe and completely self-contained version of
37 // not dealing with fixed-sized buffers. When possible, SafeSPrintf() should
48 // and SafeSPrintf() instead returns an output string that expands only
55 // SafeSPrintf() aims to be as liberal as reasonably possible. Integer-like
74 // SafeSPrintf() does not support at this time.
83 // have little impact on other parts of SafeSPrintf() function.
89 // SafeSPrintf() and SafeSNPrintf() mimic the behavior of snprintf() and they
103 // like SafeSPrintf(buf, "%p %d", 1, 2) results in "%p 2"). See above for
108 // base::strings::SafeSPrintf(buf, "The answer: %2d", 42);
229 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, Args... args) {
239 inline ssize_t SafeSPrintf(char (&buf)[N], const char* fmt) {