Lines Matching refs:sqlite3_str_appendchar
8790 SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
25510 sqlite3_str_appendchar(&sRes, 1, c); in strftimeFunc()
25518 sqlite3_str_appendchar(&sRes, 1, '%'); in strftimeFunc()
31537 sqlite3_str_appendchar(pAccum, width-1, ' '); in sqlite3_str_vappendf()
31722 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
31724 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
31831 SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ in sqlite3_str_appendchar() function
85401 sqlite3_str_appendchar(pErr, 1, '\n');
86159 sqlite3_str_appendchar(&x, 1, c);
93141 sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z);
93165 sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.');
129987 sqlite3_str_appendchar(&pGCC->str, 1, ',');
136121 #define sqlite3_str_appendchar sqlite3_api->str_appendchar
136624 sqlite3_str_appendchar,