Lines Matching refs:zQuoted
219753 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
219754 if( zQuoted==0 ){
219756 }else if( zQuoted[0]=='N' ){
219760 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
239177 char *zQuoted;
239183 zQuoted = sqlite3_malloc64(nByte);
239185 if( zQuoted ){
239190 zQuoted[i++] = '"';
239192 if( *zIn=='"' ) zQuoted[i++] = '"';
239193 zQuoted[i++] = *zIn++;
239195 zQuoted[i++] = '"';
239196 if( p->pSynonym ) zQuoted[i++] = '|';
239199 zQuoted[i++] = ' ';
239200 zQuoted[i++] = '*';
239202 zQuoted[i++] = '\0';
239204 return zQuoted;