Lines Matching defs:sqlite3_str_appendchar
8568 ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the
8583 SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
24726 sqlite3_str_appendchar(&sRes, 1,
24735 sqlite3_str_appendchar(&sRes, 1, '%');
30680 sqlite3_str_appendchar(pAccum, width-1, ' ');
30853 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
30855 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
30962 SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){
83495 sqlite3_str_appendchar(pErr, 1, '\n');
84187 sqlite3_str_appendchar(&x, 1, c);
90794 sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z);
90818 sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.');
126506 sqlite3_str_appendchar(&pGCC->str, 1, ',');
132571 #define sqlite3_str_appendchar sqlite3_api->str_appendchar
133076 sqlite3_str_appendchar,