Lines Matching refs:sqlite3_str_appendchar
9033 SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
26237 sqlite3_str_appendchar(&sRes, 1, c); in strftimeFunc()
26265 sqlite3_str_appendchar(&sRes, 1, '%'); in strftimeFunc()
32334 sqlite3_str_appendchar(pAccum, width-1, ' '); in sqlite3_str_vappendf()
32586 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
32588 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
32696 SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ in sqlite3_str_appendchar() function
86937 sqlite3_str_appendchar(pErr, 1, '\n');
87704 sqlite3_str_appendchar(&x, 1, c);
94882 sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z);
94906 sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.');
132579 sqlite3_str_appendchar(&pGCC->str, 1, ',');
139022 #define sqlite3_str_appendchar sqlite3_api->str_appendchar
139527 sqlite3_str_appendchar,