Lines Matching refs:sqlite3_str_appendchar
8815 SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
25738 sqlite3_str_appendchar(&sRes, 1, c); in strftimeFunc()
25766 sqlite3_str_appendchar(&sRes, 1, '%'); in strftimeFunc()
31838 sqlite3_str_appendchar(pAccum, width-1, ' '); in sqlite3_str_vappendf()
32027 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
32029 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf()
32136 SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ in sqlite3_str_appendchar() function
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,