Home
last modified time | relevance | path

Searched refs:AppendChar (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp30 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 …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp272 void FormatEntity::Entry::AppendChar(char ch) { in AppendChar() function in FormatEntity::Entry
2086 parent_entry.AppendChar('\a'); in ParseInternal()
2089 parent_entry.AppendChar('\b'); in ParseInternal()
2092 parent_entry.AppendChar('\f'); in ParseInternal()
2095 parent_entry.AppendChar('\n'); in ParseInternal()
2098 parent_entry.AppendChar('\r'); in ParseInternal()
2101 parent_entry.AppendChar('\t'); in ParseInternal()
2104 parent_entry.AppendChar('\v'); in ParseInternal()
2107 parent_entry.AppendChar('\''); in ParseInternal()
2110 parent_entry.AppendChar('\\'); in ParseInternal()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h155 void AppendChar(char ch);