Searched refs:zQuoted (Results 1 – 4 of 4) sorted by relevance
8456 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local8457 utf8_printf(out, "%s", zQuoted); in output_csv()8458 sqlite3_free(zQuoted); in output_csv()
193101 char *zQuoted;193107 zQuoted = sqlite3_malloc(nByte);193109 if( zQuoted ){193113 zQuoted[i++] = '"';193115 if( *zIn=='"' ) zQuoted[i++] = '"';193116 zQuoted[i++] = *zIn++;193118 zQuoted[i++] = '"';193119 if( p->pSynonym ) zQuoted[i++] = '|';193122 zQuoted[i++] = ' ';193123 zQuoted[i++] = '*';[all …]
8462 char *zQuoted = sqlite3_mprintf("\"%w\"", z); in output_csv() local8463 utf8_printf(out, "%s", zQuoted); in output_csv()8464 sqlite3_free(zQuoted); in output_csv()
193129 char *zQuoted;193135 zQuoted = sqlite3_malloc(nByte);193137 if( zQuoted ){193141 zQuoted[i++] = '"';193143 if( *zIn=='"' ) zQuoted[i++] = '"';193144 zQuoted[i++] = *zIn++;193146 zQuoted[i++] = '"';193147 if( p->pSynonym ) zQuoted[i++] = '|';193150 zQuoted[i++] = ' ';193151 zQuoted[i++] = '*';[all …]