Lines Matching refs:zQuoted
222930 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
222931 if( zQuoted==0 ){
222933 }else if( zQuoted[0]=='N' ){
222937 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
242907 char *zQuoted;
242913 zQuoted = sqlite3_malloc64(nByte);
242915 if( zQuoted ){
242920 zQuoted[i++] = '"';
242922 if( *zIn=='"' ) zQuoted[i++] = '"';
242923 zQuoted[i++] = *zIn++;
242925 zQuoted[i++] = '"';
242926 if( p->pSynonym ) zQuoted[i++] = '|';
242929 zQuoted[i++] = ' ';
242930 zQuoted[i++] = '*';
242932 zQuoted[i++] = '\0';
242934 return zQuoted;