Lines Matching defs:sqlite3_str_append
8791 ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S
8813 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
25639 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j));
25706 sqlite3_str_append(&sRes, cf=='p' ? "PM" : "pm", 2);
25708 sqlite3_str_append(&sRes, cf=='p' ? "AM" : "am", 2);
25775 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j));
31369 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt));
31373 sqlite3_str_append(pAccum, "%", 1);
31841 sqlite3_str_append(pAccum, buf, length);
31851 sqlite3_str_append(pAccum,
31974 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n);
31991 sqlite3_str_append(pAccum, ".", 1);
32028 sqlite3_str_append(pAccum, bufpt, length);
32031 sqlite3_str_append(pAccum, bufpt, length);
32148 ** This is a helper routine to sqlite3_str_append() that does special-case
32150 ** sqlite3_str_append() routine can use fast calling semantics.
32164 SQLITE_API void sqlite3_str_append(sqlite3_str *p, const char *z, int N){
32182 sqlite3_str_append(p, z, sqlite3Strlen30(z));
32649 sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4);
32651 sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4);
32658 sqlite3_str_append(&acc, "\n", 1);
81056 sqlite3_str_append(&pCheck->errMsg, "\n", 1);
86717 sqlite3_str_append(p, ",", 1);
86720 sqlite3_str_append(p, ")", 1);
86751 sqlite3_str_append(&x, ")", 1);
86821 sqlite3_str_append(&x, "]", 1);
93012 sqlite3_str_append(&out, "-- ", 3);
93014 sqlite3_str_append(&out, zStart, (int)(zRawSql-zStart));
93017 sqlite3_str_append(&out, zRawSql, sqlite3Strlen30(zRawSql));
93022 sqlite3_str_append(&out, zRawSql, n);
93048 sqlite3_str_append(&out, "NULL", 4);
93089 sqlite3_str_append(&out, "x'", 2);
93097 sqlite3_str_append(&out, "'", 1);
126743 if( j ) sqlite3_str_append(&errMsg, ", ", 2);
126745 sqlite3_str_append(&errMsg, ".", 1);
129794 sqlite3_str_append(pStr, "NULL", 4);
130749 sqlite3_str_append(&pGCC->str, zSep, nSep);
130786 if( zVal ) sqlite3_str_append(&pGCC->str, zVal, nVal);
137080 #define sqlite3_str_append sqlite3_api->str_append
137583 sqlite3_str_append,
141546 sqlite3_str_append(&acc, ")", 1);
157465 if( bAnd ) sqlite3_str_append(pStr, " AND ", 5);
157467 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1);
157469 if( i ) sqlite3_str_append(pStr, ",", 1);
157472 if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1);
157474 sqlite3_str_append(pStr, zOp, 1);
157476 if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1);
157478 if( i ) sqlite3_str_append(pStr, ",", 1);
157479 sqlite3_str_append(pStr, "?", 1);
157481 if( nTerm>1 ) sqlite3_str_append(pStr, ")", 1);
157505 sqlite3_str_append(pStr, " (", 2);
157508 if( i ) sqlite3_str_append(pStr, " AND ", 5);
157520 sqlite3_str_append(pStr, ")", 1);
157585 sqlite3_str_append(&str, " USING ", 7);
157626 sqlite3_str_append(&str, " (~1 row)", 9);
157676 if( i>pLoop->nSkip ) sqlite3_str_append(&str, " AND ", 5);
157680 sqlite3_str_append(&str, ")", 1);
179240 sqlite3_str_append(pStr, " ", 1);
179281 sqlite3_str_append(pStr, " NULL", 5);
179291 sqlite3_str_append(pStr, "?", 1);
179300 sqlite3_str_append(pStr, "(", 1);
179307 sqlite3_str_append(pStr, "?,?,?", 5);
179311 sqlite3_str_append(pStr, ")", 1);
179324 sqlite3_str_append(pStr, "?", 1);
179331 sqlite3_str_append(pStr, zId, nId);
179338 sqlite3_str_append(pStr, zSql+i, n);
179353 sqlite3_str_append(pStr, zSql+i, n);
179362 if( tokenType!=TK_SEMI ) sqlite3_str_append(pStr, ";", 1);
208490 sqlite3_str_append(pOut, "\n", 1);
208497 sqlite3_str_append(pOut, (char*)&c, 1);
208499 sqlite3_str_append(pOut, "\"\n", 2);
213792 if( ii ) sqlite3_str_append(p, ",", 1);
214079 if( ii>0 ) sqlite3_str_append(pOut, " ", 1);
214088 sqlite3_str_append(pOut, "}", 1);
214991 sqlite3_str_append(x, "[", 1);