Searched defs:SafeSPrintf (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/base/strings/
H A Dsafe_sprintf.h34 // SafeSPrintf() is a type-safe and completely self-contained version of
38 // not dealing with fixed-sized buffers. When possible, SafeSPrintf() should
49 // and SafeSPrintf() instead returns an output string that expands only
56 // SafeSPrintf() aims to be as liberal as reasonably possible. Integer-like
75 // SafeSPrintf() does not support at this time.
84 // have little impact on other parts of SafeSPrintf() function.
90 // SafeSPrintf() and SafeSNPrintf() mimic the behavior of snprintf() and they
104 // like SafeSPrintf(buf, "%p %d", 1, 2) results in "%p 2"). See above for
109 // base::strings::SafeSPrintf(buf, "The answer: %2d", 42);
210 ssize_t SafeSPrintf(cha function in namespace:base::strings
237 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, function in namespace:base::strings
264 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, function in namespace:base::strings
291 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, function in namespace:base::strings
313 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, function in namespace:base::strings
331 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, T0 arg0, T1 arg1, function in namespace:base::strings
349 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, function in namespace:base::strings
367 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, T0 arg0, T1 arg1, function in namespace:base::strings
384 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, T0 arg0, T1 arg1) { function in namespace:base::strings
400 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, T0 arg0) { function in namespace:base::strings
410 inline ssize_t SafeSPrintf(char (&buf)[N], const char* fmt) { function in namespace:base::strings
[all...]

Completed in 101 milliseconds