Lines Matching refs:zArg

92653       const unsigned char *zArg = sqlite3_value_text(argv[0]);
92656 if( zArg==0 ) return;
92657 for(i=0, n=0; zArg[i]; i++){ if( zArg[i]=='\'' ) n++; }
92661 for(i=0, j=1; zArg[i]; i++){
92662 z[j++] = zArg[i];
92663 if( zArg[i]=='\'' ){
109629 static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){
109639 sqlite3DbFree(db, zArg);
109643 azModuleArg[i] = zArg;
109696 ** in pParse->zArg[] and appends it to the list of arguments on the
130409 const char *zArg = 0;
130411 zArg = (const char *)sqlite3_value_text(apVal[1]);
130413 sqlite3Fts3Matchinfo(pContext, pCsr, zArg);
135698 const char *zArg, /* Tokenizer name */
135703 char *z = (char *)zArg;
135709 zCopy = sqlite3_mprintf("%s", zArg);
143401 ** be returned by the matchinfo() function. Argument zArg contains the
143420 const char *zArg /* Matchinfo format string */
143427 for(i=0; rc==SQLITE_OK && zArg[i]; i++){
143429 switch( zArg[i] ){
143490 assert( zArg[i]==FTS3_MATCHINFO_HITS );
143507 pInfo->aMatchinfo += fts3MatchinfoSize(pInfo, zArg[i]);
143521 const char *zArg /* Second argument to matchinfo() function */
143535 if( pCsr->zMatchinfo && strcmp(pCsr->zMatchinfo, zArg) ){
143549 int nArg; /* Bytes in zArg */
143550 int i; /* Used to iterate through zArg */
143557 for(i=0; zArg[i]; i++){
143558 nMatchinfo += fts3MatchinfoSize(&sInfo, zArg[i]);
143562 nArg = (int)strlen(zArg);
143568 memcpy(pCsr->zMatchinfo, zArg, nArg+1);
143577 rc = fts3MatchinfoValues(pCsr, bGlobal, &sInfo, zArg);
143876 const char *zArg /* Second arg to matchinfo() function */
143883 if( zArg ){
143884 for(i=0; zArg[i]; i++){
143886 if( fts3MatchinfoCheck(pTab, zArg[i], &zErr) ){
143892 zFormat = zArg;