Lines Matching refs:sqlite3_str_appendall
9032 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
32522 sqlite3_str_appendall(pAccum, (const char*)pExpr->u.zToken); in sqlite3_str_vappendf()
32543 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
32549 sqlite3_str_appendall(pAccum, pItem->u4.zDatabase); in sqlite3_str_vappendf()
32552 sqlite3_str_appendall(pAccum, pItem->zName); in sqlite3_str_vappendf()
32554 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
32741 SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){ in sqlite3_str_appendall() function
87662 sqlite3_str_appendall(&x, zP4);
87665 sqlite3_str_appendall(&x, pOp->zComment);
87711 sqlite3_str_appendall(&x, pOp->zComment);
87910 if( zP4 ) sqlite3_str_appendall(&x, zP4);
128468 sqlite3_str_appendall(&errMsg, pTab->zName);
128470 sqlite3_str_appendall(&errMsg, zCol);
139021 #define sqlite3_str_appendall sqlite3_api->str_appendall
139526 sqlite3_str_appendall,
143471 sqlite3_str_appendall(&acc, "CREATE TABLE x");
143482 sqlite3_str_appendall(&acc, ",arg HIDDEN");
143486 sqlite3_str_appendall(&acc, ",schema HIDDEN");
143643 sqlite3_str_appendall(&acc, "PRAGMA ");
143647 sqlite3_str_appendall(&acc, pTab->pName->zName);
159660 sqlite3_str_appendall(pStr, explainIndexColumnName(pIdx, iTerm+i));
159804 sqlite3_str_appendall(&str, " VIRTUAL TABLE INDEX ");
211598 sqlite3_str_appendall(pOut," <-- ");
211600 case JSONB_NULL: sqlite3_str_appendall(pOut,"null"); break;
211601 case JSONB_TRUE: sqlite3_str_appendall(pOut,"true"); break;
211602 case JSONB_FALSE: sqlite3_str_appendall(pOut,"false"); break;
211603 case JSONB_INT: sqlite3_str_appendall(pOut,"int"); break;
211604 case JSONB_INT5: sqlite3_str_appendall(pOut,"int5"); break;
211605 case JSONB_FLOAT: sqlite3_str_appendall(pOut,"float"); break;
211606 case JSONB_FLOAT5: sqlite3_str_appendall(pOut,"float5"); break;
211607 case JSONB_TEXT: sqlite3_str_appendall(pOut,"text"); break;
211608 case JSONB_TEXTJ: sqlite3_str_appendall(pOut,"textj"); break;
211609 case JSONB_TEXT5: sqlite3_str_appendall(pOut,"text5"); break;
211610 case JSONB_TEXTRAW: sqlite3_str_appendall(pOut,"textraw"); break;
211624 sqlite3_str_appendall(pOut, "ERROR: unknown node type\n");
211634 sqlite3_str_appendall(pOut, ": \"");