Lines Matching defs:cQuote
2000 char cQuote;
2011 cQuote = quoteChar(zSchema);
2012 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0;
2013 appendText(&s, zSchema, cQuote);
2016 cQuote = quoteChar(zName);
2017 appendText(&s, zName, cQuote);
2024 cQuote = quoteChar(zCol);
2025 appendText(&s, zCol, cQuote);
2144 char cQuote = quoteChar(zSchema);
2145 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){
20967 char cQuote;
20975 cQuote = quoteChar(zName);
20977 if( cQuote ) n += n+2;
20981 if( cQuote ) z[n++] = cQuote;
20984 if( zName[i]==cQuote ) z[n++] = cQuote;
20986 if( cQuote ) z[n++] = cQuote;
23931 int cQuote = c;
23936 if( c==cQuote ){
23937 if( pc==cQuote ){
23942 if( (c==cSep && pc==cQuote)
23943 || (c==rSep && pc==cQuote)
23944 || (c==rSep && pc=='\r' && ppc==cQuote)
23945 || (c==EOF && pc==cQuote)
23947 do{ p->n--; }while( p->z[p->n]!=cQuote );
23951 if( pc==cQuote && c!='\r' ){
23952 eputf("%s:%d: unescaped %c character\n", p->zFile, p->nLine, cQuote);
23956 p->zFile, startLine, cQuote);