Home
last modified time | relevance | path

Searched refs:sqlite3_str_appendchar (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/src/
H A Dprintf.c741 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 Ddate.c1223 sqlite3_str_appendchar(&sRes, 1, in strftimeFunc()
1232 sqlite3_str_appendchar(&sRes, 1, '%'); in strftimeFunc()
H A Dloadext.c449 sqlite3_str_appendchar,
H A Dsqlite3ext.h642 #define sqlite3_str_appendchar sqlite3_api->str_appendchar macro
H A Dfunc.c1790 sqlite3_str_appendchar(&pGCC->str, 1, ','); in groupConcatStep()
H A Dvdbeaux.c961 sqlite3_str_appendchar(pErr, 1, '\n'); in sqlite3VdbeNoJumpsOutsideSubrtn()
1653 sqlite3_str_appendchar(&x, 1, c); in sqlite3VdbeDisplayComment()
H A Dvdbe.c525 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 Dsqlite.h.in8207 ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the
8222 void sqlite3_str_appendchar(sqlite3_str*, int N, char C);