Searched refs:sqlite3_str_append (Results 1 – 5 of 5) sorted by relevance
/third_party/sqlite/include/ |
D | sqlite3ext.h | 646 #define sqlite3_str_append sqlite3_api->str_append macro
|
D | sqlite3.h | 8272 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
|
/third_party/sqlite/src/ |
D | sqlite3.c | 8581 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 24664 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); 24740 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); 30206 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); 30210 sqlite3_str_append(pAccum, "%", 1); 30680 sqlite3_str_append(pAccum, buf, length); 30800 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); 30817 sqlite3_str_append(pAccum, ".", 1); 30850 sqlite3_str_append(pAccum, bufpt, length); 30853 sqlite3_str_append(pAccum, bufpt, length); [all …]
|
D | shell.c | 17809 sqlite3_str_append(pStr, "x'", 2); in quoted_column() 17813 sqlite3_str_append(pStr, "'", 1); in quoted_column()
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 84612 -#define sqlite3_str_append chrome_sqlite3_str_append // Line 8094 84642 +#define sqlite3_str_append chrome_sqlite3_str_append // Line 8169 94050 + sqlite3_str_append(pStr, "x'", 2); 94054 + sqlite3_str_append(pStr, "'", 1); 99359 - sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); 99372 + sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); 99501 sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4); 99503 sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4); 108254 + sqlite3_str_append(pStr, "NULL", 4); 111631 + if( i>pLoop->nSkip ) sqlite3_str_append(&str, " AND ", 5); [all …]
|