Searched refs:sqlite3_str_appendf (Results 1 – 4 of 4) sorted by relevance
/third_party/sqlite/include/ |
D | sqlite3ext.h | 627 #define sqlite3_str_appendf sqlite3_api->str_appendf macro
|
D | sqlite3.h | 8130 SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...);
|
/third_party/sqlite/src/ |
D | sqlite3.c | 8443 SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...); 23823 sqlite3_str_appendf(&sRes, "%02d", x.D); 23829 sqlite3_str_appendf(&sRes, "%06.3f", s); 23833 sqlite3_str_appendf(&sRes, "%02d", x.h); 23848 sqlite3_str_appendf(&sRes,"%02d",(nDay+7-wd)/7); 23850 sqlite3_str_appendf(&sRes,"%03d",nDay+1); 23855 sqlite3_str_appendf(&sRes,"%.16g",x.iJD/86400000.0); 23859 sqlite3_str_appendf(&sRes,"%02d",x.M); 23863 sqlite3_str_appendf(&sRes,"%02d",x.m); 23868 sqlite3_str_appendf(&sRes,"%lld",iS); [all …]
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 79212 -#define sqlite3_str_appendf chrome_sqlite3_str_appendf // Line 8092 79242 +#define sqlite3_str_appendf chrome_sqlite3_str_appendf // Line 8167 88441 + sqlite3_str_appendf(pStr, "%s, %s", zPhase, sqlite3_errmsg(db)); 88443 + sqlite3_str_appendf(pStr, " (%d)", rc); 88649 + sqlite3_str_appendf(pStr, "%02x", a[j]); 93962 - sqlite3_str_appendf(pAccum, "SUBQUERY %u", pItem->pSelect->selId); 93967 + sqlite3_str_appendf(pAccum, "(join-%u)", pSel->selId); 93969 + sqlite3_str_appendf(pAccum, "(subquery-%u)", pSel->selId); 94028 @@ -30258,40 +31030,44 @@ SQLITE_API void sqlite3_str_appendf(StrAccum *p, const char *zFormat, ...… 94153 sqlite3_str_appendf(&x, ")"); [all …]
|