Lines Matching defs:sqlite3_str_appendchar
8800 ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the
8815 SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
25738 sqlite3_str_appendchar(&sRes, 1, c);
25766 sqlite3_str_appendchar(&sRes, 1, '%');
31838 sqlite3_str_appendchar(pAccum, width-1, ' ');
32027 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
32029 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' ');
32136 SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){
85877 sqlite3_str_appendchar(pErr, 1, '\n');
86635 sqlite3_str_appendchar(&x, 1, c);
93646 sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z);
93670 sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.');
130738 sqlite3_str_appendchar(&pGCC->str, 1, ',');
137082 #define sqlite3_str_appendchar sqlite3_api->str_appendchar
137585 sqlite3_str_appendchar,