Searched refs:AppendChar (Results 1 – 3 of 3) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_printf.cpp | 30 static int AppendChar(char **buff, const char *buff_end, char c) { in AppendChar() function 53 result += AppendChar(buff, buff_end, '-'); in AppendNumber() 71 result += AppendChar(buff, buff_end, c); in AppendNumber() 73 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-'); in AppendNumber() 77 result += AppendChar(buff, buff_end, digit); in AppendNumber() 111 result += AppendChar(buff, buff_end, *s); in AppendString() 115 result += AppendChar(buff, buff_end, ' '); in AppendString() 140 result += AppendChar(&buff, buff_end, *cur); in VSNPrintf() 208 result += AppendChar(&buff, buff_end, va_arg(args, int)); in VSNPrintf() 213 result += AppendChar(&buff, buff_end, '%'); in VSNPrintf() [all …]
|
/openbsd/gnu/llvm/lldb/source/Core/ |
H A D | FormatEntity.cpp | 271 void FormatEntity::Entry::AppendChar(char ch) { in AppendChar() function in FormatEntity::Entry 2048 parent_entry.AppendChar('\a'); in ParseInternal() 2051 parent_entry.AppendChar('\b'); in ParseInternal() 2054 parent_entry.AppendChar('\f'); in ParseInternal() 2057 parent_entry.AppendChar('\n'); in ParseInternal() 2060 parent_entry.AppendChar('\r'); in ParseInternal() 2063 parent_entry.AppendChar('\t'); in ParseInternal() 2066 parent_entry.AppendChar('\v'); in ParseInternal() 2069 parent_entry.AppendChar('\''); in ParseInternal() 2072 parent_entry.AppendChar('\\'); in ParseInternal() [all …]
|
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | FormatEntity.h | 156 void AppendChar(char ch);
|