Lines Matching refs:appendChar
17 static int appendChar(char **Buffer, const char *BufferEnd, char C) { in appendChar() function
40 Res += appendChar(Buffer, BufferEnd, '-'); in appendNumber()
58 Res += appendChar(Buffer, BufferEnd, c); in appendNumber()
61 Res += appendChar(Buffer, BufferEnd, '-'); in appendNumber()
66 Res += appendChar(Buffer, BufferEnd, Digit); in appendNumber()
101 Res += appendChar(Buffer, BufferEnd, *S); in appendString()
105 Res += appendChar(Buffer, BufferEnd, ' '); in appendString()
130 Res += appendChar(&Buffer, BufferEnd, *Cur); in formatString()
195 appendChar(&Buffer, BufferEnd, static_cast<char>(va_arg(Args, int))); in formatString()
200 Res += appendChar(&Buffer, BufferEnd, '%'); in formatString()
209 appendChar(&Buffer, BufferEnd + 1, '\0'); in formatString()