Lines Matching refs:zQuoted
222889 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
222890 if( zQuoted==0 ){
222892 }else if( zQuoted[0]=='N' ){
222896 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
242866 char *zQuoted;
242872 zQuoted = sqlite3_malloc64(nByte);
242874 if( zQuoted ){
242879 zQuoted[i++] = '"';
242881 if( *zIn=='"' ) zQuoted[i++] = '"';
242882 zQuoted[i++] = *zIn++;
242884 zQuoted[i++] = '"';
242885 if( p->pSynonym ) zQuoted[i++] = '|';
242888 zQuoted[i++] = ' ';
242889 zQuoted[i++] = '*';
242891 zQuoted[i++] = '\0';
242893 return zQuoted;