Searched refs:sqlite3_str_appendf (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 1106 sqlite3_str_appendf(p->pOut, "%s%s%s\n", p->u.pGraph->zPrefix, in qrfEqpRenderLevel() 1131 sqlite3_str_appendf(pOut, "%4lld ", N); in qrfApproxInt64() 1140 sqlite3_str_appendf(pOut, "%d.%02d", n/1000, (n%1000)/10); in qrfApproxInt64() 1143 sqlite3_str_appendf(pOut, "%2d.%d", n/100, (n%100)/10); in qrfApproxInt64() 1146 sqlite3_str_appendf(pOut, "%4d", n/10); in qrfApproxInt64() 1166 sqlite3_str_appendf(p->pOut, "%s\n", pRow->zText+3); in qrfEqpRender() 1293 sqlite3_str_appendf(pStats, " %3d%%", in qrfEqpStats() 1303 sqlite3_str_appendf(pStats, " "); in qrfEqpStats() 1312 sqlite3_str_appendf(pStats, " "); in qrfEqpStats() 1316 sqlite3_str_appendf(pLine, in qrfEqpStats() [all …]
|
| H A D | sqlite3ext.h | 655 #define sqlite3_str_appendf sqlite3_api->str_appendf macro
|
| H A D | sqlite3.c | 9198 SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...); 26870 sqlite3_str_appendf(&sRes, cf=='d' ? "%02d" : "%2d", x.D); in strftimeFunc() 26876 sqlite3_str_appendf(&sRes, "%06.3f", s); in strftimeFunc() 26880 sqlite3_str_appendf(&sRes, "%04d-%02d-%02d", x.Y, x.M, x.D); in strftimeFunc() 26892 sqlite3_str_appendf(&sRes, "%02d", y.Y%100); in strftimeFunc() 26894 sqlite3_str_appendf(&sRes, "%04d", y.Y); in strftimeFunc() 26900 sqlite3_str_appendf(&sRes, cf=='H' ? "%02d" : "%2d", x.h); in strftimeFunc() 26908 sqlite3_str_appendf(&sRes, cf=='I' ? "%02d" : "%2d", h); in strftimeFunc() 26912 sqlite3_str_appendf(&sRes,"%03d",daysAfterJan01(&x)+1); in strftimeFunc() 26916 sqlite3_str_appendf(&sRes,"%.16g",x.iJD/86400000.0); in strftimeFunc() [all …]
|
| H A D | sqlite3.h | 8877 SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...);
|