Lines Matching refs:cQuote
898 char cQuote; local
909 cQuote = quoteChar(zSchema);
910 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0;
911 appendText(&s, zSchema, cQuote);
914 cQuote = quoteChar(zName);
915 appendText(&s, zName, cQuote);
922 cQuote = quoteChar(zCol);
923 appendText(&s, zCol, cQuote);
1002 char cQuote = quoteChar(zSchema); local
1003 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){
2614 char cQuote; local
2622 cQuote = quoteChar(zName);
2624 if( cQuote ) n += n+2;
2628 if( cQuote ) z[n++] = cQuote;
2631 if( zName[i]==cQuote ) z[n++] = cQuote;
2633 if( cQuote ) z[n++] = cQuote;
5534 int cQuote = c; local
5539 if( c==cQuote ){
5540 if( pc==cQuote ){
5545 if( (c==cSep && pc==cQuote)
5546 || (c==rSep && pc==cQuote)
5547 || (c==rSep && pc=='\r' && ppc==cQuote)
5548 || (c==EOF && pc==cQuote)
5550 do{ p->n--; }while( p->z[p->n]!=cQuote );
5554 if( pc==cQuote && c!='\r' ){
5556 p->zFile, p->nLine, cQuote);
5560 p->zFile, startLine, cQuote);