Searched refs:sqlite3_str_appendchar (Results 1 – 8 of 8) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | printf.c | 741 sqlite3_str_appendchar(pAccum, width-1, ' '); in sqlite3_str_vappendf() 914 if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf() 916 if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); in sqlite3_str_vappendf() 1023 void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ in sqlite3_str_appendchar() function
|
| H A D | date.c | 1223 sqlite3_str_appendchar(&sRes, 1, in strftimeFunc() 1232 sqlite3_str_appendchar(&sRes, 1, '%'); in strftimeFunc()
|
| H A D | loadext.c | 449 sqlite3_str_appendchar,
|
| H A D | sqlite3ext.h | 642 #define sqlite3_str_appendchar sqlite3_api->str_appendchar macro
|
| H A D | func.c | 1790 sqlite3_str_appendchar(&pGCC->str, 1, ','); in groupConcatStep()
|
| H A D | vdbeaux.c | 961 sqlite3_str_appendchar(pErr, 1, '\n'); in sqlite3VdbeNoJumpsOutsideSubrtn() 1653 sqlite3_str_appendchar(&x, 1, c); in sqlite3VdbeDisplayComment()
|
| H A D | vdbe.c | 525 sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z); in sqlite3VdbeMemPrettyPrint() 549 sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.'); in sqlite3VdbeMemPrettyPrint()
|
| H A D | sqlite.h.in | 8207 ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the 8222 void sqlite3_str_appendchar(sqlite3_str*, int N, char C);
|