Lines Matching refs:zPrefix
5723 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */
5724 char *zPrefix; /* The prefix for the word we want to complete */
5826 sqlite3_free(pCur->zPrefix); pCur->zPrefix = 0; pCur->nPrefix = 0;
5851 ** keywords and filters them by zPrefix. Future enhancements should
5950 && sqlite3_strnicmp(pCur->zPrefix, pCur->zCurrentRow, pCur->nPrefix)==0
5975 sqlite3_result_text(ctx, pCur->zPrefix, -1, SQLITE_TRANSIENT);
6028 pCur->zPrefix = sqlite3_mprintf("%s", sqlite3_value_text(argv[iArg]));
6029 if( pCur->zPrefix==0 ) return SQLITE_NOMEM;
6040 if( pCur->zLine!=0 && pCur->zPrefix==0 ){
6047 pCur->zPrefix = sqlite3_mprintf("%.*s", pCur->nPrefix, pCur->zLine + i);
6048 if( pCur->zPrefix==0 ) return SQLITE_NOMEM;
15511 char zPrefix[100]; /* Graph prefix */
16466 i64 n = strlen(p->sGraph.zPrefix);
16471 utf8_printf(p->out, "%s%s%s\n", p->sGraph.zPrefix,
16473 if( n<(i64)sizeof(p->sGraph.zPrefix)-7 ){
16474 memcpy(&p->sGraph.zPrefix[n], pNext ? "| " : " ", 4);
16476 p->sGraph.zPrefix[n] = 0;
16498 p->sGraph.zPrefix[0] = 0;
25403 char zPrefix[100];
25420 sqlite3_snprintf(sizeof(zPrefix), zPrefix,
25423 sqlite3_snprintf(sizeof(zPrefix), zPrefix, "%s:", zErrorType);
25425 utf8_printf(stderr, "%s %s\n", zPrefix, zErrorTail);