Lines Matching defs:zQuoted
210442 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
210443 if( zQuoted==0 ){
210445 }else if( zQuoted[0]=='N' ){
210449 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
228792 char *zQuoted;
228798 zQuoted = sqlite3_malloc64(nByte);
228800 if( zQuoted ){
228804 zQuoted[i++] = '"';
228806 if( *zIn=='"' ) zQuoted[i++] = '"';
228807 zQuoted[i++] = *zIn++;
228809 zQuoted[i++] = '"';
228810 if( p->pSynonym ) zQuoted[i++] = '|';
228813 zQuoted[i++] = ' ';
228814 zQuoted[i++] = '*';
228816 zQuoted[i++] = '\0';
228818 return zQuoted;