Lines Matching refs:zQuoted
203413 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
203414 if( zQuoted==0 ){
203416 }else if( zQuoted[0]=='N' ){
203420 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
221707 char *zQuoted;
221713 zQuoted = sqlite3_malloc64(nByte);
221715 if( zQuoted ){
221719 zQuoted[i++] = '"';
221721 if( *zIn=='"' ) zQuoted[i++] = '"';
221722 zQuoted[i++] = *zIn++;
221724 zQuoted[i++] = '"';
221725 if( p->pSynonym ) zQuoted[i++] = '|';
221728 zQuoted[i++] = ' ';
221729 zQuoted[i++] = '*';
221731 zQuoted[i++] = '\0';
221733 return zQuoted;