Lines Matching refs:zQuoted
217910 const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol);
217911 if( zQuoted==0 ){
217913 }else if( zQuoted[0]=='N' ){
217917 zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted);
237244 char *zQuoted;
237250 zQuoted = sqlite3_malloc64(nByte);
237252 if( zQuoted ){
237257 zQuoted[i++] = '"';
237259 if( *zIn=='"' ) zQuoted[i++] = '"';
237260 zQuoted[i++] = *zIn++;
237262 zQuoted[i++] = '"';
237263 if( p->pSynonym ) zQuoted[i++] = '|';
237266 zQuoted[i++] = ' ';
237267 zQuoted[i++] = '*';
237269 zQuoted[i++] = '\0';
237271 return zQuoted;